私は今や本当にイライラしており、トンを読んでいます - 多分あなたが私を助けることができます。 Android Studioで、タイトルバーに「Main2Activity」と表示されているのはなぜですか? ...私はそれは本当に小さな問題ですが、私はそれを把握することができません知っている私が使用しAndroidManifest - アクティビティのテーマを設定
ソース
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.martin.myapplication">
<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>
<activity android:name=".Main2Activity"
android:theme="@android:style/Theme.Light.NoTitleBar"></activity>
</application>
:
ここ は私のマニフェストですhttps://developer.android.com/guide/topics/ui/look-and-feel/themes.html
Apply a theme to an activity in Android?
EDIT 現状: enter image description here
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
は作業が、すべての活動のためのアクションバーを無効にされています!
目的:activity_main2にはActionBarを設定しないでください。
SOLVEDこれはAndroidスタジオのバグです。プレビューではAppBarを無効にしませんが、あなたの携帯電話でAppを再生するとすぐに機能します!
あなたのXMLレイアウトがツールバーを持っていますしてみてください –
これは試しましたか? https://stackoverflow.com/a/25365193/2308683 –
はい、私のレイアウトにツールバーがあることが目標です。現時点では単純なケースに入れます:私は2つのアクティビティを持っています。そのうちの1つは "デフォルト"のバーを保持し、もう1つはツールバーを取得します。そのため、フルスクリーンは私にとっては選択肢ではありません –