为什么我的应用程序显示因设备而异
请帮助我在不同的设备中从各个方面修复我的应用程序 UI,如图1所示。
我的 XML 代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_pic"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="33dp"
android:layout_height="27dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
app:srcCompat="@drawable/close_btn" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="135dp"
android:layout_marginTop="5dp"
android:gravity="center">
<TextView
android:id="@+id/imageView2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/timer"
android:gravity="center"
android:text="15s"
android:textSize="20dp"
android:textColor="#3B3B3B"
android:textStyle="bold" />
</LinearLayout>
<TextView
android:id="@+id/textView"
android:layout_width="97dp"
android:layout_height="40dp"
android:layout_marginLeft="80dp"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="Score: 430"
android:textColor="#000"
android:textSize="18dp" />
</LinearLayout>
</RelativeLayout>
慕哥6287543
蝴蝶不菲
相关分类