android 线性布局LinearLayout实例代码

前端技术 2023/09/08 Android

布局文件:res/layout/activity_my.xml

复制代码 代码如下:

[html]  <LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"
    xmlns:tools=\"http://schemas.android.com/tools\"
    android:id=\"@+id/LinearLayout\"
    android:layout_width=\"fill_parent\"
    android:layout_height=\"fill_parent\"
    android:orientation=\"horizontal\"
    tools:context=\".MyActivity\" >

    <Button
        android:id=\"@+id/button1\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/wo\"
        android:textColorHint=\"@color/calamus\" />

    <Button
        android:id=\"@+id/button2\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/shi\" />

    <Button
        android:id=\"@+id/button3\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/hao\"
        android:textColor=\"@color/calamus\" />

    <Button
        android:id=\"@+id/button4\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/ren\" />

</LinearLayout>

<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"
    xmlns:tools=\"http://schemas.android.com/tools\"
    android:id=\"@+id/LinearLayout\"
    android:layout_width=\"fill_parent\"
    android:layout_height=\"fill_parent\"
    android:orientation=\"horizontal\"
    tools:context=\".MyActivity\" >

    <Button
        android:id=\"@+id/button1\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/wo\"
        android:textColorHint=\"@color/calamus\" />

    <Button
        android:id=\"@+id/button2\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/shi\" />

    <Button
        android:id=\"@+id/button3\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/hao\"
        android:textColor=\"@color/calamus\" />

    <Button
        android:id=\"@+id/button4\"
        android:layout_width=\"wrap_content\"
        android:layout_height=\"wrap_content\"
        android:layout_weight=\"1\"
        android:text=\"@string/ren\" />

</LinearLayout>

本文地址:https://www.stayed.cn/item/20497

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。