これが私のXMLです。アイコンを左に揃えたいのですが、他の場所にあるように、テキストはアイコンのすぐ横にスペースを入れて表示されます。しかし、テキストは中央に表示されています。(または2列のレイアウトで2列目に右揃え)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_scroll"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@android:color/white"
android:layout_margin="5dp"
android:stretchColumns="2"
android:layout_height="wrap_content">
<TableRow
android:id="@+id/events_header"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:drawable/list_selector_background"
android:clickable="true"
android:padding="5dip">
<ImageView android:id="@+id/ImageView02"
android:src="@drawable/event_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|left"
android:layout_margin="5dp">
</ImageView>
<TextView
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="View Events"
android:layout_gravity="left"
android:textSize="21dp"
android:textStyle="bold"
android:background="@android:color/black"
android:textColor="@android:color/white" />
</TableRow>
</TableLayout>
</ScrollView>
表示方法は次のとおりです。
[ * View Events ]
アイコンです。このように表示したいです。
[ * View Events ]