我正在学习开发Android应用程序,我正在使用抽屉模板,它使用工具栏并将其集成到操作栏中。当我尝试制作一个具有抽屉和操作栏操作的主java文件时,我遇到了问题。然后,每个实际布局将从主文件扩展,以执行所需的活动。
首先,这是我遇到的错误。
03-30 23:10:24.895 22105-22105 / com.mmaengineer.runique E / AndroidRuntime:FATAL EXCEPTION:main 过程:com.mmaengineer.runique,PID:22105 java.lang.RuntimeException:
无法启动活动ComponentInfo {com.mmaengineer.runique / com.mmaengineer.runique.MainActivity}:java.lang.IllegalStateException:此活动已有窗口装饰提供的操作栏。请勿在主题中请求Window.FEATURE_SUPPORT_ACTION_BAR并将windowActionBar设置为false以使用工具栏。
引起:java.lang.IllegalStateException:此Activity已经有一个由窗口装饰提供的操作栏。不要在主题中请求Window.FEATURE_SUPPORT_ACTION_BAR并将windowActionBar设置为false以使用工具栏。 在android.support.v7.app.AppCompatDelegateImplV7.setSupportActionBar(AppCompatDelegateImplV7.java:197) 在android.support.v7.app.AppCompatActivity.setSupportActionBar(AppCompatActivity.java:129)
清单文件
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
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>
<activity
android:name=".SettingsActivity"
android:label="@string/app_name_settings">
</activity>
</application>
MainActivity.java
public class MainActivity extends MainControls {
public static final int TL = Toast.LENGTH_SHORT; // Toast.LENGTH_LONG for longer
public SharedPreferences mPrefs;
public String gameMode;
public String double_xp;
@Override
protected void onCreate(Bundle savedInstanceState) {
mPrefs = getSharedPreferences("LSprefs", 0);
gameMode = mPrefs.getString("gameMode", "");
double_xp = mPrefs.getString("double_xp", "");
if (gameMode == "") {
Intent intent = new Intent(this, SettingsActivity.class);
startActivity(intent);
}
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
((TextView)findViewById(R.id.textView2)).setText(gameMode);
((TextView)findViewById(R.id.textView3)).setText(double_xp);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
MainControls.java
public class MainControls extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
Intent intent = new Intent(this, SettingsActivity.class);
startActivity(intent);
return true;
}
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera) {
// Handle the camera action
} else if (id == R.id.nav_gallery) {
} else if (id == R.id.nav_slideshow) {
} else if (id == R.id.nav_manage) {
} else if (id == R.id.nav_share) {
} else if (id == R.id.nav_send) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
}
styles.xml
<style name="AppTheme" parent="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>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
答案 0 :(得分:2)
解决问题的最佳方法是替换它:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
用这个:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
并保持其他一切不变。
所以,你的AppTheme将是:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
这样您仍可以根据需要使用所有主题颜色。只需确保在每个要使用ActionBar的Activity上使用工具栏。
答案 1 :(得分:0)
试试这个:
splice
答案 2 :(得分:0)
问题是您的活动需要使用从AppCompat.NoActionBar
延伸而不是AppCompat
的主题。
尝试从
更改应用的主题(在AndroidManifest.xml
中)
android:theme="@style/AppTheme"
到
android:theme="@style/AppTheme.NoActionBar"
如果这不起作用,请尝试将主题添加到MainActivity
:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
The answer from ARP基本上做同样的事情,但由于Android Studio足以为您生成AppTheme.NoActionBar
,因此对AppTheme
进行相同的更改只是愚蠢。
答案 3 :(得分:0)
如果您想使用
setSupportActionBar(toolbar);
在您的 MainActivity.java 中,然后执行以下步骤:
从清单中删除 android:theme =“ @ style / AppTheme” 。
添加 如下:
<style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> <item name="android:windowDrawsSystemBarBackgrounds" tools:targetApi="lollipop">true</item> <item name="android:statusBarColor" tools:targetApi="lollipop">@color/colorPrimaryDark </item> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style>
在清单中添加样式。
<activity android:name=".MainActivity" android:theme="@style/AppTheme.NoActionBar"> </activity>
按照以下步骤操作,您可以使用setSupportActionBar(toolbar);
据我了解,原因是您正在全局定义AppTheme,因此,如果您未将特定主题应用于活动,则它将采用AppTheme(会给您带来错误)。