#android #android-layout #android-studio #android-actionbar #android-xml
#Android #android-макет #android-studio #android-панель действий #android-xml
Вопрос:
Это то, что показывает мое приложение
Вы можете видеть, что панель действий и расположение вкладок вверху белые. По какой-то причине они устанавливаются на мой цвет backgroundColor. Я хочу, чтобы для них было установлено значение primaryColor. Как мне это сделать?
Вот мой код:
основной макет 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"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.mddri_.myeats.main._MainActivity">
<android.support.design.widget.TabLayout
android:id="@ id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="scrollable"
android:background="@color/colorPrimary"
/>
<android.support.v4.view.ViewPager
android:id="@ id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@ id/tab_layout"/>
Файл манифеста:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mddri_.myeats">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
<activity android:name=".main.MainActivity">
</activity>
<activity android:name=".viewdatabase.ViewDatabase">
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity android:name=".viewmeals.ViewMeals" />
<activity android:name=".viewkitchen.ViewKitchen" />
<activity
android:name=".main._MainActivity"
android:label="@string/title_activity___main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
стили:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat"> <!--.Light.DarkActionBar-->
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:background">@color/background</item>
<item name="android:textColor">@color/textColor</item>
<item name="android:editTextColor">@color/textColor</item>
<item name="android:actionBarStyle">@style/ActionBarTheme</item>
</style>
<style name="ActionBarTheme" parent="@style/ThemeOverlay.AppCompat.ActionBar">
<item name="android:background">@color/colorPrimary</item>
</style>
Цвет:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#C0FF3E</color>
<color name="colorPrimaryDark">#04a314</color>
<color name="colorAccent">#8a9b8c</color>
<color name="textColor">#555555</color>
<color name="background">#fcfcfc</color>
</resources>
Может кто-нибудь помочь мне понять, что я делаю не так? Я установил цвет фона как для панели действий, так и для таблицы, как colorPrimary, но он по-прежнему отображается как colorbackground
Комментарии:
1. попробуйте проверить
app:theme
в таблице или, если есть какой-либо фоновый элемент вapp
2. Используете ли вы библиотеку поддержки? если да, можете ли вы сказать мне, есть ли у вас
app_bar_main.xml
в папке layouts?3. У меня нет
app_bar_main.xml
в папке «Мои макеты», я почти уверен, что использую библиотеку поддержки