我为我的应用程序创建了图标和按钮,并将它们放入我的Android Studio项目中。
在Emulator中,它看起来像这样:

但在我的手机上看起来是这样的:

我能做什么,或者我如何完美地缩放每个分辨率的图标?
感谢你的每一个回答。
布局xml文件:
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<ImageView
android:layout_width="1052dp"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:layout_x="-321dp"
android:layout_y="137dp"
android:background="@drawable/barline"/>
<ImageButton
android:layout_width="150dp"
android:layout_height="90dp"
android:id="@+id/imageButton"
android:layout_x="-10dp"
android:layout_y="478dp"
android:background="@drawable/bewertung"
android:contentDescription="" />
<ImageButton
android:layout_width="150dp"
android:layout_height="90dp"
android:id="@+id/imageButton2"
android:layout_x="270dp"
android:layout_y="477dp"
android:background="@drawable/bekanntheit"
android:contentDescription="" />
<ImageButton
android:layout_width="150dp"
android:layout_height="90dp"
android:id="@+id/imageButton3"
android:layout_x="172dp"
android:layout_y="477dp"
android:background="@drawable/crew"
android:contentDescription="" />
<ImageButton
android:layout_width="150dp"
android:layout_height="90dp"
android:id="@+id/imageButton4"
android:layout_x="85dp"
android:layout_y="477dp"
android:background="@drawable/einkaufswagen"
android:contentDescription="" />
发布于 2016-01-29 19:22:08
使用方向设置为水平的LinearLayout,然后为您拥有的每个视图定义layout_weight:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="80dp"
android:orientation="horizontal"
android:gravity="center"
android:background="@drawable/barline">
<ImageButton
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="1"
android:id="@+id/imageButton"
android:background="@drawable/bewertung"
android:contentDescription="" />
<ImageButton
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="1"
android:id="@+id/imageButton2"
android:background="@drawable/bekanntheit"
android:contentDescription="" />
<ImageButton
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="1"
android:id="@+id/imageButton3"
android:background="@drawable/crew"
android:contentDescription="" />
<ImageButton
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="1"
android:id="@+id/imageButton4"
android:background="@drawable/einkaufswagen"
android:contentDescription="" />
</LinearLayout>https://stackoverflow.com/questions/35070983
复制相似问题