我正在尝试使用TextView立即创建一个ListView。为了实现这一点,我在ListView中添加了一个页脚。我想要ListView和TextView之间的一行,但我希望它具有特定的边距。我创建了一个样式,然后将其添加到页脚。当我添加带有样式的视图时,它会将我的文本完全推离屏幕。这是ListView:
<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/list_view_order_filter"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="15dp"
android:layout_weight="1" >
</ListView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="horizontal" >
<Button
android:id="@+id/orderFilters"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/order_filter" >
</Button>
<Button
android:id="@+id/orderFiltersCancel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/cancel" >
</Button>
</LinearLayout>
</LinearyLayout>
这是我的风格:
<style name="divider">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">1dp</item>
<item name="android:layout_marginRight">15dp</item>
<item name="android:layout_marginLeft">15dp</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:background">?android:attr/listDivider</item>
</style>
这是我的页脚:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<View style="@style/divider" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="1">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:gravity="left"
android:text="@string/total"
android:textStyle="bold" />
<TextView
android:id="@+id/orderTotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:gravity="right"
android:textIsSelectable="true" />
</LinearLayout>
</LinearLayout>
以下是我的观点的截图。
答案 0 :(得分:1)
页脚中的LinearLayout是水平的,但带有style =“@ style / divider”的View具有layout_width:match_parent。它将随后出现的所有内容推离屏幕。
答案 1 :(得分:0)
这是@ style / divider
中“match_parent”的问题{
<item name="android:layout_width">20dp</item>
<item name="android:layout_height">1dp</item>
<item name="android:layout_marginRight">15dp</item>
<item name="android:layout_marginLeft">15dp</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:background">?android:attr/listDivider</item>
}
尝试此操作后,您可以根据需要调整宽度
来查看视图您可以将线性布局设置为垂直
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="40dp" >
<View style="@style/divider" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:gravity="left"
android:text="12000000"
android:textStyle="bold" />
<TextView
android:id="@+id/orderTotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:gravity="right"
android:textIsSelectable="true" />
</LinearLayout>
答案 2 :(得分:0)
试试这段代码。在这里,我将您的主要xml和页脚合并到单个文件中。根据你编辑
<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/list_view_order_filter"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="15dp"
android:layout_weight="1" >
</ListView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="horizontal" >
<Button
android:id="@+id/orderFilters"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="order_filter" >
</Button>
<Button
android:id="@+id/orderFiltersCancel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="cancel" >
</Button>
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@drawable/icon" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:gravity="left"
android:text="total"
android:textColor="#3a6e9a"
android:textStyle="bold" />
<TextView
android:id="@+id/orderTotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:gravity="right"
android:text="left"
android:textColor="#3a6e9a" />
</LinearLayout>
</LinearLayout>