如何在屏幕底部设置包含xml文件的include小部件的内容

时间:2016-04-04 20:21:30

标签: android xml android-layout

我想在屏幕底部使用两个按钮,为了两个按钮的布局,我创建了另一个名为frag的xml文件,并在主活动的相对布局字段中包含了alignParentButtom属性,但这不起作用。

这是我的主要xml文件

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/frag"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_alignParentBottom="true" />
</RelativeLayout>

这就是frag.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="CONNECT"
    android:id="@+id/open"
    android:textColor="#ffffff"
    android:layout_weight="1"
    />
<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="DISCONNECT"
    android:id="@+id/close"
    android:textColor="#ffffff"
    android:layout_weight="1"/>
</LinearLayout>

Why this image is not according to its attribute of layout_height="wrap_content"

1 个答案:

答案 0 :(得分:0)

你应该做这样的事情 -

largest = smallest