我有一個從android.support.v4.app.Fragment
擴展的片段類。現在,在它的佈局我還補充說:Theme.AppCompat片段類
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_chat_activity"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="center_horizontal"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:id="@+id/imageView"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/loaded_items"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="-15dp"/>
<TextView
android:id="@+id/txv_count_notify"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textColor="#0000"
android:textSize="12sp"
android:textStyle="bold"
tools:text="32546874"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
,但我得到這個錯誤,並沒有什麼顯示佈局:
Select Theme.AppCompat or a descendant in the theme selector
這是我的styles.xml:
<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>
我使用片段,我不想使用活動並從延伸AppCompatActivity。你的建議是什麼?
你是什麼意思?這是在清單文件中:'android:theme =「@ style/AppTheme」> –
請給@ style/AppTheme.PopupOverlay和@ style/AppTheme.AppBarOverlay –
styles.xml這是我的整個styles.xml包含:' <! - Base application theme。 - > ' –