gpt4 book ai didi

Android - 使用 Theme.AppCompat 不显示操作栏

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:24 26 4
gpt4 key购买 nike

我正在尝试使用 Theme.AppCompat,但是当我这样做时,操作栏就消失了。没有错误或任何错误。

问题是我在另外两个项目中使用了这个确切的设置,它们工作得很好,但不确定发生了什么变化。

我还尝试更改支持库版本、父主题、清理项目、重建和使缓存失效。不确定这些是否有帮助,但我还是做了。

我正在使用 Android Studio 0.8.14

如果我错了请纠正我,但这就是我在旧 API 上使用 Material Theme 小部件和调色板的方式,对吧?

预览

enter image description here


样式.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>

</resources>

AndroidManifest.xml

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ActivityLogin"
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>

构建.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.2'
}

最佳答案

我的回答应该作为评论,但这是我可以回复的唯一方式。您是否在 Activity 中扩展了 ActionBarActivity?你试过show()了吗?您 Activity 中的方法?

关于Android - 使用 Theme.AppCompat 不显示操作栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27318955/

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