一个困扰了我好几个星期的问题,尝试了一切,但无济于事。
我想要做的是在每个屏幕尺寸上都有完全相同的布局。让我用一张图来说明:
在 2.7 英寸设备上:
在 10.1 英寸设备上(出于说明目的,图片经过严重的 photoshop 处理):
但是使用当前的 Android 实现,我在 10.1 英寸设备上得到了这个:
简而言之,我希望我的应用程序在所有屏幕尺寸上看起来都一样(相对而言),包括按钮大小、文本缩放等。我之前通过重写 View 类,制作自己的 View 并在里面绘制所有内容来做到这一点,但是使用这种方法,添加视图元素变得非常快速,并且具有“onClick”回调功能的优势也消失了(因为我只是以编程方式在覆盖的 View 类中绘制位图以用作按钮)。有没有办法使用 android xml 文件来实现这一点?
这是我的(测试)XML 代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="center">
<Button
android:id="@+id/button_1"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1"
android:text="ABCDEF" />
<Button
android:id="@+id/button_2"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1"
android:text="GHI" />
<Button
android:id="@+id/button_3"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1"
android:text="JKLM" />
</LinearLayout>