2016-09-03 96 views
0

我是Xamarin中的新用戶。我爲我的項目創建了主題。在下面。更改工具欄Xamarin中的文本顏色(Android)

Styles.Xml

<?xml version="1.0" encoding="utf-8" ?> 
<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> 

    </style> 

    <style name="AppTheme.NoActionBar"> 
    <item name="windowActionBar">false</item> 
    <item name="windowNoTitle">true</item> 
    </style> 

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> 

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> 

    <style name="MyCustomTheme.Splash" parent ="Theme.AppCompat.Light.NoActionBar"> 
    <item name="android:windowBackground">@drawable/splash</item> 
    <item name="android:windowNoTitle">true</item> 
    </style> 

</resources> 

在RegisterActivity它的工作well.It給我#FFFFFF如我所料。但在MainActivity中,它給了我黑色。

RegisterActivity圖片

enter image description here

MainActivity圖片:

enter image description here

我用同樣的主題爲兩個Activity.I使用這種方式。

MainActivity.cs

[Activity(Label = "MainActivity", Theme = "@style/AppTheme.NoActionBar")] 
    public class MainActivity : AppCompatActivity, NavigationView.IOnNavigationItemSelectedListener 
    { 
     DrawerLayout drawerLayout; 
     NavigationView navigationView; 

     private Android.Support.V7.Widget.Toolbar toolbar; 
     protected override void OnCreate(Bundle savedInstanceState) 
     { 
      base.OnCreate(savedInstanceState); 
      SetContentView(Resource.Layout.Main); 

      this.toolbar = FindViewById<Android.Support.V7.Widget.Toolbar>(Resource.Id.toolbar); 
      SetSupportActionBar(this.toolbar); 
      SupportActionBar.SetDisplayHomeAsUpEnabled(true); 
      SupportActionBar.SetHomeButtonEnabled(true); 
      SupportActionBar.SetHomeAsUpIndicator(Resource.Drawable.ic_action_toggle); 

      drawerLayout = FindViewById<DrawerLayout>(Resource.Id.drawer_layout); 
      navigationView = FindViewById<NavigationView>(Resource.Id.navigationView); 
      navigationView.SetNavigationItemSelectedListener(this); 


     } 

任何幫助理解。

回答

1

花費30分鐘後,我發現答案我忘了添加AppBarLayout我的佈局它會工作,當我添加它。

<android.support.design.widget.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" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay" /> 
</android.support.design.widget.AppBarLayout> 

輸出:

enter image description here

+0

大家好,我要更改導航欄的文本顏色。我怎樣才能做到這一點。 – Deepak

相關問題