我为我的应用创建了图标和按钮,并将它们放入我的Android Studio项目中。
在模拟器中它看起来像这样:
但在我的手机上它看起来像这样:
我可以做什么或如何完美地缩放每个分辨率的图标?
感谢您的每一个答案。
布局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="" />
&#13;
答案 0 :(得分:0)
使用方向设置为水平的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>