我正在創建一個帶有標題爲「帳戶信息」(ref .. image)的佈局的頁面。後面跟着一個表,我需要從服務器獲取後動態填充表,但無法這樣做。下面是.xml文件,並附着在圖像:下面的屏幕需要xml佈局
<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@layout/header_gradient" >
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_weight="0.20"
android:gravity="center_horizontal"
android:padding="15dp"
android:text="@string/my_account_header_text"
android:textColor="#ffffff"
android:textSize="24sp" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#ffffff" >
<RelativeLayout
android:id="@+id/my_activity_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#ffffff" >
<TextView
android:id="@+id/my_acc_component"
android:layout_width="158dp"
android:layout_height="wrap_content"
android:text="@string/my_account_component"
android:textColor="#372c24"
android:textSize="@dimen/login_credentials_txt" />
<TextView
android:id="@+id/my_acc_details"
android:layout_width="158dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/my_acc_component"
android:text="@string/my_account_details"
android:textColor="#372c24"
android:textSize="@dimen/login_credentials_txt" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
究竟是什麼問題?此外,您的圖片鏈接似乎缺少... – codeMagic