我想在布局中使用两个listview和我的底层功能。这是我的布局文件。我只是想如果我的父布局填充孔屏幕然后孩子将在父布局之后,我也想要显示我的底部布局。请帮我解决这个问题。 谢谢:)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<ListView
android:id="@+id/my_cart_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<ListView
android:id="@+id/my_ecart_list"
android:layout_below="@+id/my_cart_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/rr"
android:layout_weight="1"/>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/rr"
android:background="#FA0"
android:layout_marginBottom="0dp">
<TextView
android:id="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Items"
android:textColor="#000"
android:textSize="17sp"
android:layout_marginTop="15dp"
android:layout_marginLeft="20dp"/>
<TextView
android:id="@+id/cart_item_count"
android:layout_toRightOf="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="(2)"
android:textColor="#000"
android:textSize="17sp"
android:layout_marginTop="15dp"
android:layout_marginLeft="5dp"/>
<TextView
android:id="@+id/total_cart_amount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000"
android:textSize="20sp"
android:layout_alignTop="@+id/cart_item_count"
android:layout_centerHorizontal="true" />
<Button
android:id="@+id/checkout_cart"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="4dp"
android:layout_marginTop="4dp"
android:padding="3dp"
android:text="Checkout >>"
android:textSize="16dp" />
<TextView
android:id="@+id/mycart_empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="CART IS EMPTY"
android:gravity="center"
android:textColor="#000"
android:textSize="22sp"
android:layout_marginTop="12dp"/>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:1)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- your button layout goes here -->
</RelativeLayout>
</LinearLayout>
如果您想自动调整视图的高度(此处列表视图) 然后将您的身高设置为 0dp 并根据需要设置重量。
编辑:抱歉,我的错误已经更新了代码。
答案 1 :(得分:0)
访问this。
或复制此片段:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
</ListView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:text="Button" />
</LinearLayout>
答案 2 :(得分:0)
使用此代码替换您的xml。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1">
<ListView
android:id="@+id/my_ecart_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.45" />
<ListView
android:id="@+id/my_cart_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.45" />
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rr"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1"
android:background="#FA0">
<TextView
android:id="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="15dp"
android:text="Items"
android:textColor="#000"
android:textSize="17sp" />
<TextView
android:id="@+id/cart_item_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="15dp"
android:layout_toRightOf="@+id/item_text"
android:text="(2)"
android:textColor="#000"
android:textSize="17sp" />
<TextView
android:id="@+id/total_cart_amount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/cart_item_count"
android:layout_centerHorizontal="true"
android:textColor="#000"
android:textSize="20sp" />
<Button
android:id="@+id/checkout_cart"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="4dp"
android:layout_marginTop="4dp"
android:padding="3dp"
android:text="Checkout >>"
android:textSize="16dp" />
<TextView
android:id="@+id/mycart_empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:gravity="center"
android:text="CART IS EMPTY"
android:textColor="#000"
android:textSize="22sp" />
</RelativeLayout>
</LinearLayout>