我有一個線性佈局和裏面的一個按鈕。我希望按鈕適合佈局寬度的大約90%。以下一些教程中,我使用的屬性layout_weight,這就是我的代碼:Android的重量和佈局寬度
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF"
android:weightSum="5" >
<Button
android:id="@+id/newgame"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"
android:text="@string/newgame"
android:textSize="16sp"
android:typeface="monospace"
android:textStyle="bold"
android:background="@drawable/backrepeat" />
</LinearLayout>
現在,我的按鈕消失,如果我設置layout_width到0dp像極了教程說...可能是什麼問題呢? 在此先感謝。
改變方向的LinearLayout水平或添加重量爲1的不可見視圖。 – joao2fast4u
即使您使用重量,如果您使用正確的內容,您也只想知道方向t ...方向和價值... –