我想要創建一個items列表。每個列表項應該有四個文本。而這四者都將放在該列表的不同四角。我可以在xml文件中做。但我無法弄清楚如何從Android中的java中執行此操作。因爲我需要從我的數據庫中創建這些列表。爲了更好地理解我的問題,下面是我的XML代碼。請問誰能幫我..?從android中的java格式化佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/tvb"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical|center_horizontal"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="left"
android:text="Left Aligned"
android:textSize="25dp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="Right Aligned" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical|center_horizontal"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="left"
android:text="Left Aligned" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="Right Aligned" />
</LinearLayout>
</LinearLayout>
好吧!所以有什麼問題? –
我建議使用單個RelativeLayout而不是像這樣深度嵌套的LinearLayout。閱讀起來會更容易,並且可能會提高應用程序的性能。 –
非常感謝@ Tanis.7x。但是,如果可以給我一些示例java代碼來獲取該代碼將更有幫助:D – exponentialFun