我在库存过流和链接上找到了许多相关答案,例如Supporting Different Screens或Screen Compatibility Mode
我已经创建了以下相对布局,我试图让它在所有Android屏幕上看起来都很相似。
我的图像非常适合4.8英寸手机,但当我尝试使用2.8英寸显示屏或类似的东西时,某些按钮会在其他按钮上方显示,并且它们不会缩小。
有没有人有任何建议如何改善?
最好不要增加我的应用程序的大小。
提前致谢!
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mm="http://millennialmedia.com/android/schema"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
tools:context=".MainActivity" >
<ImageButton
android:id="@+id/Switch_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:onClick="someMethod"
android:background="@drawable/switch_off"/>
<ImageView
android:id="@+id/warning_shot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@drawable/more"
android:onClick="someMethod" />
<ImageView
android:id="@+id/imageViewBatteryState"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/Switch_off"
/>
<ImageView
android:id="@+id/sh"
android:layout_width="147dp"
android:layout_height="54dp"
android:layout_below="@+id/Switch_off"
android:layout_centerHorizontal="true"
android:background="@drawable/me"/>
<ImageView
android:id="@+id/sit"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_below="@+id/Switch_off"
android:layout_centerHorizontal="true"
/>
<TextView
android:id="@+id/textViewBatteryInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="12sp"
android:textStyle="bold"
android:typeface="monospace"
android:layout_alignBottom="@+id/sit"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
答案 0 :(得分:1)
我建议您专门针对此问题使用 LinearLayout 而不是Relativelayout:
我的图像非常适合4.8英寸手机,但当我尝试使用2.8时 英寸显示器或类似的东西,一些按钮在上面 其他人,他们不会缩小。
因为当您向Linearlayout提供方向时,其子项永远不会在任何分辨率或屏幕尺寸上相互叠加。
如果你给他们重量,那么每个设备的视图都将处于固定位置。
例如,在项目中放置 Xml ,并在任意分辨率中检查出来,它将给出相同的结果。
<强> XML:强>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mm="http://millennialmedia.com/android/schema"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 1" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 2" />
<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 3" />
</LinearLayout>
</LinearLayout>