Android 学习记录-基础控件与布局

今天在Udacity上学习安卓入门教程,这网站挺不错的,然而却被GFW无情挡在外面,唉,试了xx-net,好像最近抽风了,然后用了lantern,白天的话网速还可以,看教学视频480P还是不卡的。

今天学了些控件和布局,textView和imageView和button,布局有lineraLayout和relativeLayout

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="383dp"
    android:layout_height="200dp"
    android:background="@android:color/darker_gray"
    >

    <TextView
        android:text="Guest List"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:textSize="24sp"
        android:background="#ffff00"
        android:textColor="#0000FF"/>

    <TextView
        android:text="Kunal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"  //控制剩余布局权重
        android:textSize="24sp"
        android:background="#00ffff"
        android:textColor="#0000FF"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="sample"
        android:textSize="24sp"
        android:background="#00ff00"
        android:textColor="#FF0000"/>


</LinearLayout>

安卓布局样式(谷歌提供)


你可能感兴趣的:(android,视频,textview,布局,教学)