在 Android Studio 1.4.1 中使用 Nexus 10 模拟器忽略 layout-xlarge
Posted
技术标签:
【中文标题】在 Android Studio 1.4.1 中使用 Nexus 10 模拟器忽略 layout-xlarge【英文标题】:layout-xlarge being ignored using Nexus 10 emulator in Android Studio 1.4.1 【发布时间】:2016-02-08 14:07:16 【问题描述】:我使用的是 android Studio 1.4.1 版。
我的布局大目录中有以下 2 个布局 xml:
activity-main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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_
android:layout_ android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout android:layout_
android:layout_ android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
android:layout_ android:layout_
android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton android:id="@+id/fab"
android:layout_ android:layout_
android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
content_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="horizontal"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main" tools:context=".MainActivity">
<fragment
android:layout_
android:layout_
android:layout_weight="2"
class="com.hfad.workout.WorkoutListFragment"
android:id="@+id/list_frag"/>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_
android:layout_
android:layout_weight="3" />
</LinearLayout>
这是我的 AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hfad.workout" >
<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"
android:theme="@style/AppTheme.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DetailActivity"
android:label="@string/title_activity_detail"
android:theme="@style/AppTheme.NoActionBar" >
</activity>
</application>
</manifest>
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig
applicationId "com.hfad.workout"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
以下是来自 Android Studio 的模拟器详细信息:
Name: Nexus_10_API_23
CPU/ABI: Google APIs Intel Atom (x86)
Path: /Users/rt/.android/avd/Nexus_10_API_23.avd
Target: Google APIs (API level 23)
Skin: nexus_10
SD Card: /Users/rt/.android/avd/Nexus_10_API_23.avd/sdcard.img
Snapshot: no
hw.lcd.density: 320
hw.dPad: no
hw.initialOrientation: landscape
avd.ini.encoding: UTF-8
hw.camera.back: none
disk.dataPartition.size: 200M
hw.gpu.enabled: yes
runtime.network.latency: none
skin.dynamic: yes
hw.keyboard: yes
runtime.network.speed: full
hw.device.hash2: MD5:47dc70fd92541dd16c19f9efa3e9db62
hw.ramSize: 1536
tag.id: google_apis
tag.display: Google APIs
hw.sdCard: yes
hw.device.manufacturer: Google
hw.mainKeys: no
hw.accelerometer: yes
hw.trackBall: no
hw.device.name: Nexus 10
hw.battery: yes
hw.sensors.proximity: no
AvdId: Nexus_10_API_23
hw.sensors.orientation: yes
hw.audioInput: yes
hw.camera.front: none
hw.gps: yes
avd.ini.displayname: Nexus 10 API 23
snapshot.present: no
vm.heapSize: 128
runtime.scalefactor: auto
但是,当我在 Nexus 10 模拟器中运行我的应用程序时,它使用 layout 目录中定义的布局,而不是 layout-xlarge 目录。非常感谢任何帮助!
【问题讨论】:
使用 layout-sw720dp.or layout-sw800dp. 谢谢@GabrieleMariotti,虽然没用:-( 【参考方案1】:我通过进入 AVD 管理器 > 编辑此 AVD > 显示高级设置 > 自定义皮肤定义解决了这个问题
将皮肤从“nexus_10”更改为“无皮肤”
【讨论】:
这是正确答案,nexus_10 皮肤(仍然)有问题【参考方案2】:我也遇到过这个问题,经过一番研究,我可以说这是 android studio 的一个已知问题。 large 和 xlarge 布局正确显示在预览中(在 IDE 中),但不能在模拟器中显示(它需要正常的布局 xml)。你应该使用真正的手机,但我知道并不是每个人都有安卓手机。
【讨论】:
以上是关于在 Android Studio 1.4.1 中使用 Nexus 10 模拟器忽略 layout-xlarge的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 2005,如何获得解决方案中使用项目的位置?
如何在 Visual Studio 2012 中使一个类完全静态,这样它就不会出现任何错误? - C# [关闭]
将应用程序从 Eclipse 移植到 Android Studio 时出错