私はAndroid Studio v2.2.3で新しいプロジェクトを作成しました。これは、APIレベル15をターゲットとしたプロジェクトで、開始するブランクアクティビティが1つあります。ここでアンドロイドプロジェクトはアクティビティのメニューを設定します
その活動のためのXMLがある:プレビューペインで
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_starting"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.bfsog.apps.testapp.StartingActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Lorem ipsum"/>
</RelativeLayout>
と、私はこれを実行すると、画面の上部に私のアプリの名前を持つ青色のバーがあるし、それを下回っています私のテキストビュー。
私は、同じXMLで、新しい空のアクティビティを作成したが、わずかに異なるテキスト:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_display_notification"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.bfsog.apps.testapp.SecondActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ipsum lorem"/>
</RelativeLayout>
は今第二の活動のプレビューペインには、上部に水平の青いバーを持っていません。
これはどこに指定されていますか?
編集:私のマニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bfsog.apps.testapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".StartingActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SecondActivity"
android:theme="@style/AppTheme">
</activity>
</application>
</manifest>
最初の活動は、テーマを指定していないが、それは青いバーを取得します。 2番目のアクティビティはテーマを指定しますが、表示されません。
アクションバー、何が必要ですか?それを削除しようとしていますか? – OBX
ツール:コンテキスト、一般的にそのアクティビティに必要なテーマに種を付ける、マニフェストの2番目のアクティビティに同じテーマを設定する、その他の場合はテーマのようにする必要があります。 – Redman
スタイルをテーマに定義する必要があります。 xml。 –