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

studyjams notes 1B--width and height

2016-04-10 14:39 363 查看
Thanks the android xml visualizer(open source)

you can use it by click here

width height

effects



code

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

<TextView
android:text="春"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />

<TextView
android:text="夏"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />

<TextView
android:text="秋"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />

<TextView
android:text="东"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />

</LinearLayout>


knowlege point





tea time

enjoy it!

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