0
我試圖在線性佈局內生成表格佈局,而我放入第二個佈局內的任何內容都沒有顯示出來。我試圖做這樣的事情:線性佈局內的內容未顯示
https://www.dropbox.com/s/gnk3plt0ci3d2u8/tabla.png?dl=0
我試圖在線性佈局內生成表格佈局,而我放入第二個佈局內的任何內容都沒有顯示出來。我試圖做這樣的事情:線性佈局內的內容未顯示
https://www.dropbox.com/s/gnk3plt0ci3d2u8/tabla.png?dl=0
已設置爲內用線性佈局的寬度和高度屬性會導致爲您解決問題。其實值顯示,但不可見你。
我建議你使用weightsem屬性來控制佈局的寬度。
試試下面的代碼,我希望它能爲你工作。
代碼..
<LinearLayout 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"
android:orientation="vertical"
tools:context=".LinearLayout" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="100" >
<ImageView
android:id="@+id/profile_picture"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="20"
android:padding="15dp"
android:src="@drawable/ic_launcher" />
<TableLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="80"
android:padding="20dp" >
<TableRow>
<TextView android:text="Emma Watson" />
</TableRow>
<TableRow>
<TextView android:text="Calorias" />
</TableRow>
<TableRow>
<TextView android:text="CO2" />
</TableRow>
<TableRow>
<TextView android:text="Distancia" />
</TableRow>
</TableLayout>
</LinearLayout>
</LinearLayout>
謝謝!它的工作現在 – 2014-10-07 03:57:26