工具栏不会显示在Fragment上

时间:2018-03-11 01:18:23

标签: java android android-fragments

我只有一个活动,其他一切都是片段。但是,我不希望在我的主活动中有一个工具栏来修改我的片段,因为只有少数视图实际上有一个工具栏。

这是片段的XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/tbRegister"
        android:layout_height="?attr/actionBarSize"
        android:layout_width="match_parent"
        android:text="Create an account!"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:padding="30dp">
        ...
        ...
    </LinearLayout>

</LinearLayout>

OnCreateView:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_register, container, false);
    Toolbar tbRegister = (Toolbar) view.findViewById(R.id.tbRegister);
    tbRegister.setTitle("Create an account!");
    ...
    ...
}

我可以看到一个灰色框来表示片段中的工具栏,但内部没有任何内容。现在,我只想显示标题。我尝试过在XML中设置标题:

android:text="Create an account!"

我还尝试将支持操作栏分配给工具栏:

Toolbar tbRegister = (Toolbar) view.findViewById(R.id.tbRegister);
tbRegister.setTitle("Create an account!");
((AppCompatActivity) getActivity()).setSupportActionBar(tbRegister);

但我只是无法显示文字,任何想法?

编辑: 的AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="myapp.raouf.myapp">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
    android:allowBackup="false"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar">
    <activity
        android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

截图: enter image description here

2 个答案:

答案 0 :(得分:1)

我的解决方案是添加formatter.string(from: measurement.unit) 作为工具栏的子项:

TextView

或者,您可以将属性 <android.support.v7.widget.Toolbar android:id="@+id/tbRegister" android:layout_height="?attr/actionBarSize" android:layout_width="match_parent" android:text="Create an account!" android:background="?attr/colorPrimary" app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> <TextView android:id="@+id/tvTitle" android:text="Create an account!" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title" android:layout_gravity="center" /> </android.support.v7.widget.Toolbar> 添加到工具栏中 - 但这并不灵活。我希望我的工具栏标题居中,所以我明确地创建了一个app:title="Create an account!"

没有解释为什么TextView无法正常工作,但我认为这是最好的。

答案 1 :(得分:0)

通过删除以下内容将再次起作用:

android:theme="@style/Theme.AppCompat.Light.NoActionBar">