0
A
回答
3
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
</LinearLayout>
+1
它應該是layout_height中的fill_parent。 – Carnal
+1
兩者都提供相同的用戶界面。感謝您的信息。 – VenomVendor
2
用途:
RES /價值觀LDPI/dimens.xml
RES /價值觀MDPI/dimens.xml
RES /值,華電國際/ dimens.xml
設置按鈕高度
<!-- in values-ldpi/dimens.xml -->
<dimen name="height">25dip</dimen>
<!-- in values-mdpi/dimens.xml -->
<dimen name="height">30dip</dimen>
<!-- in values-hdpi/dimens.xml -->
<dimen name="height">40dip</dimen>
相關問題
- 1. 適合所有屏幕尺寸
- 2. 佈局不適合所有屏幕
- 3. 適合所有屏幕的Android設計
- 4. 使頁面適合所有屏幕
- 5. 適合屏幕
- 6. android gridview適合屏幕大小
- 7. 當RecyclerView適合屏幕時,不要摺疊工具欄
- 8. 小工具在主屏幕中拉伸。
- 9. 從按鈕打開小工具屏幕
- 10. 如何水平居中對齊標籤以適合所有屏幕大小
- 11. CSS:股利自動適合所有的屏幕頁面底部的大小
- 12. imageView沒有拉伸到適合屏幕
- 13. 如何適合沒有滾動屏幕?
- 14. 使圖像適合屏幕
- 15. 佈局不適合屏幕
- 16. Bootstrap組件適合屏幕
- 17. Cardview不適合屏幕
- 18. Bootstrap Modal不適合屏幕
- 19. 使HTML Canvas適合屏幕
- 20. 適合網頁到屏幕
- 21. UIImageView適合整個屏幕
- 22. 圖像不適合屏幕
- 23. 的Iframe適合屏幕
- 24. Xcode UILabel適合屏幕
- 25. MuPDF Android Pdf適合屏幕
- 26. 視窗Android適合屏幕
- 27. Smartgit Ubuntu不適合屏幕
- 28. 適合所有屏幕的設計Android應用程序
- 29. Android應用程序響應(適合所有屏幕尺寸)
- 30. 如何使Android應用程序適合所有屏幕尺寸
然後在您的xml文件的按鈕中使用layout_weight作爲屬性。 – Carnal
使用relativelayout時可能有多大? –
由於這是直線垂直的,因此需要使用LinearLayout。但是,如果您必須使用RelativeLayout,那麼您可以將您的按鈕添加到LinearLayout中,然後添加layout_weight屬性。 – Carnal