我的工具栏没有显示

时间:2018-02-05 07:40:54

标签: android

我想在我的应用中添加自定义操作栏,这是我的代码

每次失败时我尝试使用不同的方法。

我的主页.java代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mimoh.kulkarni.mimoh">
<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=".homepage">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".simple_questions"></activity>
    <activity android:name=".tough_questions"></activity>
</application>

我的清单xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/homepagelayout"
    android:background="@drawable/wallpaper"
    android:layout_height="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar">

        <!--app:theme="@style/ThemeOverlay.AppCompat.Dark"-->
        <!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light"-->

    </android.support.v7.widget.Toolbar>


    <Button
        android:id="@+id/simplequestions"
        android:background="@drawable/button_custom"
        android:layout_width="200dp"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="40dp"
        android:textColor="#ff0000"
        android:text="Simple Questions" />

    <Button
        android:id="@+id/toughquestion"
        android:layout_width="200dp"
        android:background="@drawable/button_custom"
        android:layout_height="50dp"
        android:layout_below="@id/simplequestions"
        android:layout_centerHorizontal="true"
        android:textColor="#ff0000"
        android:layout_marginTop="54dp"
        android:text="Tough Questions" />

    <Button
        android:id="@+id/seemyotherapp"
        android:layout_width="200dp"
        android:layout_height="50dp"
        android:layout_below="@id/toughquestion"
        android:background="@drawable/button_custom"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="71dp"
        android:textColor="#ff0000"
        android:text="See My Other Apps" />

    <Button
        android:id="@+id/rateapp"
        android:layout_width="200dp"
        android:background="@drawable/button_custom"
        android:layout_height="50dp"
        android:layout_below="@id/seemyotherapp"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="75dp"
        android:text="Rate App" />
</RelativeLayout>

activity_homepage.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/settings"
    android:title="Settings"
    app:showAsAction="always"/>

</menu>

my_menu.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

</resources>

style.xml

    #include <stdio.h>
    #include <cs50.h>
    #include <math.h>

    int main(void)
    {
        float change;
        do {
            change = get_float("Change owed: ");
        }
        while (change < 0);
        int no = 0;
        while (change >= 0.01) {
            if (change >=  0.25) {
                change = change - 0.25;
                no = no + 1;
                printf("a %f\n", change);
            }
            else if (change >= 0.1) {
                change = change - 0.1;
                no = no + 1;
               printf("b %f\n", change);
            }
            else if (change >= 0.05) {
                change = change - 0.05;
                no = no + 1;
                printf("c %f\n", change);
            }
            else if (change >= 0.01) {
                change = change - 0.01;
                no = no + 1;
                printf("c %f\n", change);
            }
        };
        printf("%i", no);
    }

截图:

Screen shot here

我该怎么办?

2 个答案:

答案 0 :(得分:0)

您正在使用相对布局。您的工具栏应位于父级的顶部。

 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:id="@+id/homepagelayout"
  android:background="@drawable/wallpaper"
  android:layout_height="match_parent">

 <android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="?attr/colorPrimary"
    android:minHeight="?attr/actionBarSize"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar">

    <!--app:theme="@style/ThemeOverlay.AppCompat.Dark"-->
    <!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light"-->

 </android.support.v7.widget.Toolbar>


  <Button
    android:id="@+id/simplequestions"
    android:background="@drawable/button_custom"
    android:layout_width="200dp"
    android:layout_height="50dp"
    android:layout_below="@+id/toolbar"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="40dp"
    android:textColor="#ff0000"
    android:text="Simple Questions" />

  <Button
    android:id="@+id/toughquestion"
    android:layout_width="200dp"
    android:background="@drawable/button_custom"
    android:layout_height="50dp"
    android:layout_below="@id/simplequestions"
    android:layout_centerHorizontal="true"
    android:textColor="#ff0000"
    android:layout_marginTop="54dp"
    android:text="Tough Questions" />

 <Button
    android:id="@+id/seemyotherapp"
    android:layout_width="200dp"
    android:layout_height="50dp"
    android:layout_below="@id/toughquestion"
    android:background="@drawable/button_custom"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="71dp"
    android:textColor="#ff0000"
    android:text="See My Other Apps" />

  <Button
    android:id="@+id/rateapp"
    android:layout_width="200dp"
    android:background="@drawable/button_custom"
    android:layout_height="50dp"
    android:layout_below="@id/seemyotherapp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="75dp"
    android:text="Rate App" />
</RelativeLayout>

答案 1 :(得分:0)

这就是我试图实现你所要求的:

setSupportActionBar(toolbar);
View myToolBar= getLayoutInflater().inflate(R.layout.myToolbar, null);
toolbar.addView(myToolBar);

除此之外,您还可以将视图添加到工具栏xml。