Iga*_*gal 3 xml android textview imageview android-linearlayout
我有一个ListView与自定义适配器和此列表中的项目的布局.项目的布局只是带有ImageView的TextView.图像应与屏幕右侧对齐.但是,图像的位置会稍微移动,具体取决于TextView中文本的长度.这就是它的样子:
这是我的XML代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center_vertical" >
<TextView
android:id="@+id/txtCategoryName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="10"
android:singleLine="true"
android:ellipsize="end"
android:gravity="center_vertical"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:textColor="@color/list_text_color"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ImageView
android:id="@+id/imgArrowRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/right_arrow_44"
android:contentDescription="@string/img_description_right_arrow"
android:layout_gravity="right" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)
如何使图像始终与右侧对齐,而不是轻推?
RelativeLayout应该很好地使用android:layout_alignParentRight
和解决你的问题android:layout_alignParentLeft
.就像是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtCategoryName"
android:layout_alignParentLeft="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="end"
android:gravity="center_vertical"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:textColor="@color/list_text_color"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ImageView
android:id="@+id/imgArrowRight"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/right_arrow_44"
android:contentDescription="@string/img_description_right_arrow"/>
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
10930 次 |
最近记录: |