无法获得简单的RelativeLayout。我正在构建一个由行组成的ListView,它们看起来像这样:
+-----------------------------+--------------+
| Line 1 | Small button |
| Line 2, more text | |
| Line 3, even more text | |
这是我的第一次尝试 - 遗憾的是,垂直分隔线没有出现。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants">
<TextView
android:id="@+id/lineOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:textColor="@color/wallet_holo_blue_light"
android:textSize="18dp"
android:textStyle="bold" />
<TextView
android:id="@+id/lineTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/lineOne"
android:textSize="16dp" />
<TextView
android:id="@+id/lineThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/lineTwo"
android:textSize="14dp" />
<ImageButton
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@android:color/transparent"
android:focusable="false"
android:focusableInTouchMode="false"
android:onClick="doSomething"
android:src="@drawable/arrow_down" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:layout_toLeftOf="@id/myButton"
android:background="?android:attr/listDivider" />
</RelativeLayout>
编辑:我几乎用下面的代码解决了自己的问题。
现在我的布局看起来不错......
+-----------------------------+--------------+
| Line 1 | Small button |
| Line 2, more text | |
| Line 3, even more text | |
...除非第一行例如太长 - 在这种情况下,分隔符和按钮不会显示:
+-----------------------------+--------------+
| Line 1, way way way way too long which |
| wraps |
| Line 2, more text |
| Line 3, even more text |
你能帮我做最后的调整吗?
非常感谢!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/lineOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/wallet_holo_blue_light"
android:textSize="18dp"
android:textStyle="bold" />
<TextView
android:id="@+id/lineTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp" />
<TextView
android:id="@+id/lineThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14dp" />
</LinearLayout>
<!-- As per http://stackoverflow.com/questions/6992804/how-to-right-align-widget-in-horizontal-linear-layout-android -->
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="horizontal">
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="?android:attr/listDivider" />
<ImageButton
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:focusable="false"
android:focusableInTouchMode="false"
android:src="@drawable/arrow_down" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
+-----------------------------+--------------+
| Line 1 | Small button |
| Line 2, more text | |
| Line 3, even more text | |
如果你想要实现这样的布局,那么首先要考虑哪些是固定长度,哪些是可变的。我假设分隔线和小按钮总是有小宽度,只有线宽会改变。因此,在这种情况下,您可以设置按钮和分隔线宽度,并将宽度的其余部分设置为直线。您可以使用layout_weight="1"
对布局进行剩余的剩余空间。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:orientation="vertical">
//your lines here
</LinearLayour>
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="?android:attr/listDivider" />
<ImageButton
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:focusable="false"
android:focusableInTouchMode="false"
android:src="@drawable/arrow_down" />
</LinearLayour>