gpt4 book ai didi

安卓 : Required API to use Switch?

转载 作者:IT老高 更新时间:2023-10-28 23:36:56 24 4
gpt4 key购买 nike

由于以下错误,我无法在我的项目中插入 Switch:

View requires API level 14 (current min is 8):

但是在我的项目属性中,我使用的是 Platform 4.1 和 API Level 16。那么有什么问题呢?

最佳答案

Google IO 2012 (starting at slide 32) 有一个很好的讲座。

这是一个详细的例子:

通过将其放置在/res/layout-v14 中,为 ICS+ 版本创建单独的布局 XML 文件。生成的文件结构将如下所示:

res/layout
- mainlayout.xml
- compound_button.xml
res/layout-v14
- compound_button.xml

当您的应用在 v14 或更高版本上运行时,Android 将在 layout-v14 目录中查找资源。

在 mainlayout.xml 中放置一个包含,当应用程序运行时将拉入相关的 Compound_button.xml:

<include layout="@layout/compound_button" />

对于 4.0 之前的布局,我们需要一个复选框,因此创建/layout/compound_button.xml 作为合并,如下所示:

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

<CheckBox
android:id="@+id/enabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enable" />

</merge>

然后对于 4.0+ 的布局,我们想要一个开关,所以创建/layout-v14/compound_button.xml 作为合并,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<merge 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" >

<Switch
android:id="@+id/enabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enable"
tools:ignore="NewApi" />

</merge>

当然,一定要适本地设置你的最小值和目标:

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="14" />

关于安卓 : Required API to use Switch?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11435001/

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