我仍然沒有找到解決方法如何在XML中執行此操作 我希望我的textview左對齊,並且我的imageview要對齊到右邊,這裏是代碼:在TableLayout中對齊
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow
android:id="@+id/tr1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_height="wrap_content"
android:text="Vibration"
android:layout_width="wrap_content" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:src="@drawable/ic_launcher" />
</TableRow>
</TableLayout>
有沒有辦法做到這一點?
不能正常工作...... – user1275995
這個代碼代替了什麼? – marmor
沒有什麼變化 – user1275995