如何将xml文件适合Android手机的所有屏幕尺寸?

时间:2018-07-30 14:18:01

标签: java android xml screen

我创建了一个android应用程序。我的应用程序目前运行良好。但是,当我将此应用安装到3.7英寸显示屏尺寸的手机等其他设备上时,活动文本视图,按钮等的某些部分将被剪切。我想使此自动模式适用于所有屏幕尺寸。

您能告诉我,如何在没有错误的情况下轻松地做到这一点?

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="net.gurujibd.bornomala.alphabet">

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".SorBorno"
            android:screenOrientation="landscape" />
        <activity
            android:name=".BenjonBorno"
            android:screenOrientation="landscape" />
        <activity
            android:name=".ShongKha"
            android:screenOrientation="landscape" />
        <activity
            android:name=".PoriChiti"
            android:screenOrientation="landscape" />
    </application>

</manifest>

0 个答案:

没有答案