2016-11-17 74 views
0

我已經創建了一個項目,但我需要res/menu文件夾來添加工具欄到佈局,我一直在搜索,沒有任何人工作,你能幫我找到請問問題?在創建的項目上添加res /菜單文件夾

Project

這是風格的錯誤:

Error Style

Layout.xml:

<FrameLayout 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" 
    android:background="@drawable/background_menu" 
    tools:context="com.example.caca_a_frase.Menu" > 
    <TextView 
    android:id="@+id/fullscreen_content" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:gravity="center" 
    android:keepScreenOn="true" 
    android:textColor="#33b5e5" 
    android:textSize="50sp" 
    android:textStyle="bold" /> 

    <!-- 
    This FrameLayout insets its children based on system windows using 
    android:fitsSystemWindows. 
    --> 

    <FrameLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" > 

    <LinearLayout 
     android:id="@+id/fullscreen_content_controls" 
     style="?metaButtonBarStyle" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|center_horizontal" 
     android:background="@color/black_overlay" 
     android:orientation="horizontal" 
     tools:ignore="UselessParent" > 

    </LinearLayout> 
    <ImageView 
     android:id="@+id/loading" 
     android:layout_width="141dp" 
     android:layout_height="145dp" 
     android:layout_gravity="top" 
     android:rotation="350" 
     android:src="@drawable/titulo_menu" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="230dp" 
     android:layout_gravity="center" 
     android:orientation="vertical" > 

     <Button 
      android:id="@+id/botaoJogar" 
      android:layout_width="152dp" 
      android:layout_height="59dp" 
      android:layout_gravity="center" 
      android:background="@drawable/botao_jogar" /> 

     <Button 
      android:id="@+id/botaoOpcoes" 
      android:layout_width="152dp" 
      android:layout_height="59dp" 
      android:layout_gravity="center" 
      android:layout_margin="20dp" 
      android:background="@drawable/botao_opcoes" /> 

     <Button 
      android:id="@+id/botaoSair" 
      android:layout_width="152dp" 
      android:layout_height="59dp" 
      android:layout_gravity="center" 
      android:background="@drawable/botao_sair" /> 

    </LinearLayout> 

    <Button 
     android:id="@+id/button1" 
     style="?android:attr/buttonStyleSmall" 
     android:layout_width="45dp" 
     android:layout_height="45dp" 
     android:layout_gravity="right" 
     android:layout_margin="7dp" 
     android:background="@drawable/botao_info" 
     android:text="" /> 

    <android.support.v7.widget.Toolbar 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="?attr/colorPrimary" 
     android:theme="?attr/actionBarTheme" 
     android:minHeight="?attr/actionBarSize" 
     android:id="@+id/toolbar" /> 

    </FrameLayout> 

</FrameLayout> 
+2

右鍵單擊您的res文件夾中的項目結構,創建一個名爲新目錄'菜單'。並在其中創建菜單xml。 –

+0

已經做到了,它沒有工作 –

+1

爲什麼'沒有工作'?請解釋你的問題。 –

回答

0

右鍵單擊res文件夾選擇Android的資源目錄

enter image description here

選擇資源類型菜單,然後點擊確定

enter image description here

+0

我已經做到了這一點,它並沒有爲我工作,它說樣式不見了。 –

+0

謝謝... @Amol Nage –

0

請重命名activity_menu菜單

相關問題