Android UI组件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp"
    android:gravity="center_horizontal|bottom">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button aaaaaaaaaaaaaaaaa"
        android:id="@+id/button1"
        android:layout_margin="20dp"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button2" />
    <Button
        android:layout_width="200dp"
        android:layout_height="100dp"
        android:text="New Button"
        android:id="@+id/button3" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button4" />
</LinearLayout>
View Code

posted @ 2016-04-15 19:47  哔哩哔哩干杯  阅读(190)  评论(0编辑  收藏  举报