質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,3 +1,33 @@
|
|
1
1
|
androidでタイトルバーが出なくなったのですが何故だかわかりません。
|
2
2
|
どのような事が原因なのでしょうか。
|
3
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
-
|
4
|
+
package="パッケージ名" >
|
5
|
+
|
6
|
+
<application
|
7
|
+
android:allowBackup="true"
|
8
|
+
android:icon="@mipmap/ic_launcher"
|
9
|
+
android:label="@string/app_name"
|
10
|
+
android:supportsRtl="true"
|
11
|
+
android:theme="@style/AppTheme" >
|
12
|
+
<activity android:name=".MainActivity" >
|
13
|
+
<intent-filter>
|
14
|
+
<action android:name="android.intent.action.MAIN" />
|
15
|
+
|
16
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
17
|
+
</intent-filter>
|
18
|
+
</activity>
|
19
|
+
</application>
|
20
|
+
<uses-permission android:name="android.permission.INTERNET" />
|
21
|
+
</manifest>
|
22
|
+
|
23
|
+
<resources>
|
24
|
+
|
25
|
+
<!-- Base application theme. -->
|
26
|
+
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
27
|
+
<!-- Customize your theme here. -->
|
28
|
+
<item name="colorPrimary">@color/colorPrimary</item>
|
29
|
+
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
30
|
+
<item name="colorAccent">@color/colorAccent</item>
|
31
|
+
</style>
|
32
|
+
|
33
|
+
</resources>
|