0
如何解決這些圖標,分隔線和列表視圖對齊問題。它適用於某些屏幕,但適用於其他屏幕,因此可以輕鬆實現。下面是代碼Android中的對齊問題
<?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="wrap_content"
android:background="#ffffff"
android:padding="8dp">
<LinearLayout
android:id="@+id/Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="8dip">
<TextView
android:id="@+id/list_item_entry_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:textColor="#666666"
android:fadingEdge="horizontal"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
/>
<TextView
android:id="@+id/list_item_entry_summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#666666"
android:layout_alignLeft="@id/list_item_entry_title"
android:layout_below="@id/list_item_entry_title"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
/>
</LinearLayout>
<ImageView
android:id="@+id/divider"
android:layout_width="2dip"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="70dip"
android:layout_centerInParent="true"
android:gravity="center_horizontal|center_vertical"
android:paddingBottom="15dip"
android:paddingTop="15dip"
android:background="#e7ebee"
/>
<ImageView
android:id="@+id/list_item_entry_drawable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:paddingRight="10dip"
android:src="@drawable/icon" />
</RelativeLayout>