【发布时间】:2025-12-07 09:35:01
【问题描述】:
我想让我在 android xml 中的所有视图都根据屏幕大小进行放大。反正我能做到。我不能完全使用 match_parent 或 wrap_content。
这是一个相对布局的按钮。我想根据屏幕大小改变它的大小
<Button
android:id="@+id/simple_b_1"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/simple_b_4"
android:layout_alignLeft="@+id/simple_check"
android:text="1"
android:width="66dp" />
【问题讨论】:
标签: android xml views screen-size