android studio嵌套布局怎么弄
1个回答
展开全部
首先activity_main采用的是RelativeLayout布局方式,然后通过include标签引入一个LinearLayout的布局文件。
建一个xml文件,取名twobtn.xml,内容如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button android:layout_width="0sp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/equal"/>
<Button android:layout_width="0sp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/clear"/>
</LinearLayout>
注意以上代码中的android:layout_weight属性。
然后在主layout文件中加入以下代码
<include
android:id="@+id/btn" layout="@layout/twobtn"
android:layout_below="@id/theTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0sp"
android:layout_marginRight="0sp"/>
建一个xml文件,取名twobtn.xml,内容如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button android:layout_width="0sp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/equal"/>
<Button android:layout_width="0sp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/clear"/>
</LinearLayout>
注意以上代码中的android:layout_weight属性。
然后在主layout文件中加入以下代码
<include
android:id="@+id/btn" layout="@layout/twobtn"
android:layout_below="@id/theTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0sp"
android:layout_marginRight="0sp"/>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询