我是 android 新手,我正在开发应用程序。我在developers.google.com 中读到,如果我希望应用程序屏幕兼容,那么我的图标应该是ldpi、mdpi、hdpi、xhdpi 和android 本身会选择这样吗?如果不是,那么我必须做些什么使它与屏幕兼容以及如何提供动态填充?就像现在我的代码看起来像这样
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash_page"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_alignParentBottom="true"
android:gravity="center_vertical">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="600dp"
android:layout_gravity="center_horizontal"
android:background="@drawable/icon_login_btn"/>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:paddingTop="40dp"
android:background="@drawable/icon_btn_register" />
</LinearLayout>
</RelativeLayout>
所以,你看这里我给了margin top,但这仅适用于平板电脑,不适用于大屏幕手机。