2016-03-29 13 views
1

Androidスタジオでは、アプリが期待通りに表示されます。アプリがデバッグされると、アプリの名前を表示するバナーは消えますがAndroid App - アプリをデバッグするときにツールバーが消える

どこでエラーが生じましたか?

より明確にするためには、ここでは、Androidのメーカーに示し方法は次のとおりです。

enter image description here

ここ

(あなたは何のバナーがありません見ることができるように)私はアプリを実行したとき、それは方法を示します

enter image description here

activity_main.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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.example.it5.foothillers.MainActivity" 
    android:background="#f4f4f4"> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:weightSum="1" 
     android:paddingEnd="0dp" 
     android:paddingStart="0dp" 
     android:layout_margin="0dp"> 

     <Button 
      android:layout_width="fill_parent" 
      android:layout_height="23dp" 
      android:text="NEWS" 
      android:id="@+id/button" 
      android:layout_weight="0.28" 
      android:background="@android:color/holo_blue_bright" 
      android:textColor="#ffffff" 
      android:textSize="48dp" /> 

     <Button 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="SPORTS" 
      android:id="@+id/button2" 
      android:layout_weight="0.20" 
      android:background="@android:color/holo_blue_light" 
      android:textColor="#ffffff" 
      android:textSize="48dp" /> 

     <Button 
      android:layout_width="match_parent" 
      android:layout_height="24dp" 
      android:text="EVENTS" 
      android:id="@+id/button3" 
      android:layout_weight="0.29" 
      android:background="@android:color/holo_blue_dark" 
      android:textColor="#ffffff" 
      android:textSize="48dp" /> 

     <Button 
      android:layout_width="match_parent" 
      android:layout_height="24dp" 
      android:text="MORE" 
      android:id="@+id/button4" 
      android:layout_weight="0.24" 
      android:background="#f1f108" 
      android:textSize="48dp" /> 
    </LinearLayout> 
</RelativeLayout> 

答えて

1

更新:あなたのアプリがActivityを拡張する場合

場合AppCompatActivityに変更してください。

+0

このユーザーが[古い投稿](http://stackoverflow.com/q/36269706/2308683)を見ると、すでにテーマが使用されているように見えます。 –

+0

ありがとう、私は彼が 'AppCompatActivity'だけ必要と思います.. –

+0

ねえ、あなたは英雄です!ありがとうございました!!それは働いた:))@MounirElfassi – Martintoobeast

1

クラスがAppCompatActivityを拡張していることを確認してください。まだアクションバーが表示されない場合は、AndroidManifest.xmlでアプリのテーマをTheme.AppCompat.Light.DarkActionBarに変更してみてください。

また、私はそれが役に立てば幸い解像度

<item name="android:windowActionBar">false</item> 

であなたのstyles.xmlでこれを設定してみてくださいすることができます!敬具!

+0

class extendsをAppCompatActivityに変更すると、アクションバーが表示されます。出来た!!!そのような簡単な修正@Isaac – Martintoobeast

関連する問題