您的位置:首页 > 移动开发 > Android开发

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

2016-04-02 22:16 477 查看
今天在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>

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息