我有以下列表视图。我想在列表视图周围设置空间,以便它不会填满整个屏幕。我怎样才能做到这一点。
我已尝试过listview和父相对布局的每个填充和边距组合,似乎都没有效果。
先谢谢马特。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#8fff"
android:cacheColorHint="#0000"
android:divider="#700000ff"
android:dividerHeight="4px" >
</ListView>
</RelativeLayout>
。编辑1
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout 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">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#8fff"
android:cacheColorHint="#0000"
android:divider="#700000ff"
android:dividerHeight="4px" >
</ListView>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:0)
将listview放在另一个布局中,并为该布局添加填充..
答案 1 :(得分:0)
android:layout_margin="sizeindp"
使用它对我有效
你想实现这个!!!!
答案 2 :(得分:0)
使用此..
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#8fff"
android:cacheColorHint="#0000"
android:layout_margin="15dp"
android:padding="10dp"
android:divider="#700000ff"
android:dividerHeight="4px" >
</ListView>