我已經創建了使用線性佈局的下面的佈局,它的運行良好,但我有一個疑問,它可以優化,因爲我已經使用嵌套的線性佈局創建此UI,我認爲它不好。Android - 想優化佈局
所以,你能幫我通過使用相對佈局或其他方式來優化這種線性佈局嗎?
我已經等被定義的佈局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="6dip">
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="fill_parent"
android:layout_marginLeft="10dip">
<TextView
android:id="@+id/txtViewTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_vertical"
android:textSize="18dip"
android:text="hello"
/>
<TextView
android:id="@+id/txtViewDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_vertical"
android:textSize="14dip"
android:text="hello"
/>
</LinearLayout>
<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="fill_parent"
android:src="@drawable/arrow"
android:layout_marginLeft="3dip"
android:scaleType="center"/>
</LinearLayout>
@PM:你能否詳細解釋你的問題,我的意思是你想做什麼? –
解釋您的預期設計,如果可能請附上圖片。 –
@Tushar我不想改變設計,但想要優化上面的代碼,因爲我採取了嵌套的線性佈局。 –