gpt4 book ai didi

安卓工作室 : failed to find style 'checkboxStyle' in current theme

转载 作者:行者123 更新时间:2023-11-29 01:28:15 26 4
gpt4 key购买 nike

尝试使用 Android Studio 创建 Android 应用。使用复选框时遇到了麻烦:没有出现实际的复选框。只有它的文字。收到有关缺少样式的消息。(屏幕截图链接如下)。

http://i.stack.imgur.com/0Tzdf.png

我该如何处理?

XML 文件:

<LinearLayout 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:orientation="vertical"
tools:context=".MainActivity"
android:padding="20dp">

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Pizza"
android:textSize="20sp"
android:id="@+id/cbPizza"
android:checked="false"
android:allowUndo="false" />

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/cbHamburger" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="HamBurger"
android:id="@+id/textView" />

</LinearLayout>
</LinearLayout>

list 文件:

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
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>
</activity>
</application>

</manifest>

最佳答案

在窗口的上方选择App theme。不用担心渲染。您仍然可以运行您的应用。

关于安卓工作室 : failed to find style 'checkboxStyle' in current theme,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32670079/

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