我正在尝试将ListView行看起来如下所示:
| Text-Text-Text <ImageButton> |
将图像按钮对齐到右边缘。我怎样才能做到这一点?这是我正在使用的当前布局代码。我做错了什么?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layercontainer"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#699">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="left">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="YO HOW SI IT GOESSDA" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/trash" />
</LinearLayout>
</LinearLayout>
我的代码目前生成此代码:
答案 0 :(得分:16)
步骤1:使用RelativeLayout
基础。
第2步:将ImageButton
设为android:layout_alignParentRight="true"
第3步:让TextView
拥有android:layout_alignParentLeft="true"
,android:layout_toLeftOf="..."
(其中...
是您ImageButton
的ID),也许还有其他一些垂直对齐的RelativeLayout.LayoutParams
值
答案 1 :(得分:2)
以下代码段提供了一个示例,说明如何创建一个包含一些文本的ListView行(水平左对齐,通过android:layout_alignParentLeft="true"
)和一个图标(通过android:layout_alignParentRight="true"
水平右对齐) ,以及所有垂直居中(android:layout_centerVertical="true"
)。
呈现如下(YMMV,取决于全局样式):
还有一个注释掉的附加图标,可放置在最右侧图标的左侧;删除XML注释标记以启用。
这是布局XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:descendantFocusability="blocksDescendants"
android:padding="6dp">
<!-- Note: android:descendantFocusability="blocksDescendants" set to ensure that
OnItemClickListener works by ensuring constituent controls do not take focus -->
<TextView
android:id="@+id/lbl_list_item_row_text"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:lines="1"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="My List Item Text"
/>
<!-- This can be uncommented to add another button
<ImageButton
android:id="@+id/btn_additional_icon"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/icon_additional_icon"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:padding="3dp"
android:background="@null"
android:src="@drawable/icon_additional_icon" />
-->
<ImageButton
android:id="@+id/icon_additional_icon"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@null"
android:padding="3dp"
android:src="@drawable/icon_right_aligned_icon" />
</RelativeLayout>