我尝试设计布局与线性布局垂直和水平设计多行与两列,并试图完美的右列对齐,但列是左列的字数左右移动...我怎么能解决这个问题,帮助我…
我的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="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#b4cde6"
android:orientation="horizontal"
android:padding="10dp"
android:weightSum="2" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Order Id"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="564789"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:weightSum="2" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Order Datednhgv"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="19/04/2014"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
6条答案
按热度按时间zmeyuzjn1#
试试这个。
将所有
LinearLayout
宽度android:layout_width="wrap_content"
更改为android:layout_width="0dp"
,如下所示。到
axr492tv2#
请尝试使用此布局代码。
7tofc5zh3#
您应该使用TableLayout进行此类设计。你会在这里得到更多的信息。http://developer.android.com/reference/android/widget/TableLayout.html
toe950274#
尝试使用此代码实现对齐布局。如果您使用此布局作为列表视图的自定义布局,请删除第二个线性布局并与列表视图一起使用。
44u64gxh5#
试试这个
daolsyd06#
如果你想创建多行,最好选择列表视图。与添加多个布局相比,列表视图是更好的选择。Here是处理listview的简单示例。