gpt4 book ai didi

模拟器中的 Android 平板电脑没有选择正确的布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:28:43 28 4
gpt4 key购买 nike

我是 Android 的新手,正在尝试学习如何使用多个布局文件夹为不同尺寸的设备指定不同的布局。

我尝试了几种不同的方法,但似乎无法让我的模拟平板电脑使用更大的布局。

我的布局目录结构是:

  • 布局
  • 大布局
  • layout-sw600dp
  • layout-xlarge

layout中的main.xml是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<SearchView android:id="@+id/searchView"
android:iconifiedByDefault="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<FrameLayout
android:id="@+id/EarthquakeFragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>

其他三个文件夹中的main.xml为:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">

<SearchView android:id="@+id/searchView"
android:iconifiedByDefault="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFF"/>

<fragment android:name="com.paad.earthquake.EarthquakeListFragment"
android:id="@+id/EarthquakeListFragment"
android:layout_width="360dp"
android:layout_height="fill_parent"
/>

<fragment android:name="com.paad.earthquake.EarthquakeMapFragment"
android:id="@+id/EarthquakeMapFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

</LinearLayout>

模拟器设置正在尝试模拟 Google Nexus 7:

  • 目标:Google API(API 级别 16)
  • 皮肤:WXGA800-7in
  • SD卡:16M
  • 我正在使用皮肤附带的所有其他选项,加上 hw.keyboard=yes 和 hw.ramSize=512

有谁知道为什么这不起作用?

感谢您的帮助!

最佳答案

如果你使用的是 10"平板电脑和 android 3.2 或更高版本,你应该有 layout-sw720dp 文件夹来存放你的布局文件

关于模拟器中的 Android 平板电脑没有选择正确的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12199479/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com