Android模拟器未检测到正确的屏幕尺寸?

时间:2017-03-15 14:29:13

标签: android android-layout android-studio android-emulator

我正在创建一个应用程序,需要不同的屏幕尺寸布局。我已经搜索了一段时间,并已将屏幕规格添加到我的清单中,并为每个屏幕大小创建了一个不同的布局文件夹。

当我使用平板电脑模拟器从android studio运行模拟器时,它会根据需要运行layout-xlarge个文件。但是在所有其他情况下,它只运行layout个文件。

这对我来说是个问题,因为我还需要layout-large个文件。

我想知道这是否与我的代码有关,或者这是否是模拟器问题?

编辑: android清单

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

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />

<supports-screens android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true" />


<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:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

</application>

layout-large

中的xml示例
    <RelativeLayout    
  xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@mipmap/background1">


<Button
    android:id="@+id/create_an_account_initial_page"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Large screen"
    android:textSize="17sp"
    android:textStyle="bold"
    android:textColor="@android:color/white"
    android:background="@drawable/button_rectangle_red"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="31dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginStart="20dp"
    android:layout_marginEnd="20dp"/>



</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

检查您的模拟设备尺寸,请参阅以下内容:

  

xlarge屏幕至少为960dp x 720dp

     

大屏幕至少为640dp×480dp

     

正常屏幕至少为470dp×320dp

     

小屏幕至少为426dp x 320dp

这将确保它使用正确或错误的设置。

尝试将layout文件夹重命名为layout-normal