Android工具栏未在android studio中显示,但已显示在设备上。我跟踪了很多主题,但是没有具体的解决方案。我在android上创建了一个新项目,但始终没有显示。它也没有显示我的旧项目。
设备
我也得到那些错误
渲染问题
无法加载具有未知错误的AppCompat ActionBar。提示:尝试刷新布局。
无法实例化一个或多个类
无法实例化以下类: -android.support.v7.widget.ActionBarContainer(打开类,显示异常,清除缓存) -android.support.v7.widget.ActionBarContextView(打开类,显示异常,清除缓存) -android.support.v7.app.WindowDecorActionBar(打开类,显示异常,清除缓存) 提示:在自定义视图中使用View.isInEditMode()可以跳过代码或在IDE中显示示例数据。
但是当我添加“ Base”时,这些问题不会消失。在内部设置样式主题。
到目前为止我做了什么
有人说这与“ com.android.support:appcompat-v7:28.0.0”有关 因此,请使用“ com.android.support:appcompat-v7:28.0.0-alpha1”,但是它没有用。我也尝试使用alpha3。
我在style.xml上更改了主题,我尝试了“ NoActionBar”,“ Dark.ActionBar”和许多其他功能。但是什么都没有改变。
清除缓存,但是没有用。
我在style.xml(应用程序)中添加“ .Base”。
MainActivity
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
</android.support.constraint.ConstraintLayout>
Gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.test.parala"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:customtabs:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
Gradle2
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.parala">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
样式
<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="koko" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowActionBar">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:actionBarSize">40dp</item>
</style>
答案 0 :(得分:0)
这可能不是一个完全正确的答案,但是在其他情况下还是很实用的。降低gradle v27。这样工具栏就会出现在布局管理器上,并在发布项目之前再次升级到v28。