Xamarin的Android表格工具栏AppCompatActivity背景颜色没有改变(Xama

2019-10-29 18:00发布

在我Xamarin窗体的Android项目,我需要更改的工具栏 Title colorbackground color我曾与在谷歌提出了许多解决方法试过,但不幸的是,我无法找到正确的解决方案给我

我需要的是

什么我得到现在是

通过使用下面的代码

MainActivity.cs

[Activity(Label = "Sample.Droid", Icon = "@mipmap/icon_launcher", Theme = "@style/MyTheme")]
    public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
    {
            protected override void OnCreate(Bundle bundle)
            {
                base.OnCreate(bundle);

                global::Xamarin.Forms.Forms.Init(this, bundle);          

                LoadApplication(new App());
            }   


    }

styles.xml

    <?xml version="1.0" encoding="UTF-8"?>
<resources>

    <style name="MyTheme" parent="MyTheme.Base">
    </style>

    <style name="MyTheme.Base" parent="Theme.AppCompat.NoActionBar"> 

        <item name="windowNoTitle">true</item>     
        <item name="windowActionBar">false</item>    
        <item name="colorPrimary">#cc66ff</item>  
        <item name="colorPrimaryDark">#1976D2</item>          
        <item name="colorAccent">#FF4081</item>  

    </style>

Toolbar.axml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#cc66ff"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

我曾尝试

我曾试图改变android:backgroundToolbar.xaml但它并没有关于它的任何影响;它总是在工具栏显示黑暗的背景

而且我这个下面的代码试图太MainActivity.cs这个隐藏标题工具栏

 var toolbar = FindViewById<Toolbar>(Resource.Id.toolbar);             
              SetSupportActionBar(toolbar);

请人指导我解决这个问题,让我得到了什么,我需要在此先感谢

Answer 1:

在你的应用程序类(PCL),添加这些改变后退按钮的颜色:

NavigationPage naviPage =  new NavigationPage( new App13.MainPage());
MainPage = naviPage;
naviPage.BarBackgroundColor = Color.FromHex("#cc66ff");

我已经做了演示给你。

更新:

从这里 ,像@MarlonRibeiro说,你可以使用drawerArrowStyle到后退按钮的颜色更改为白色(我已经更新了我在github上的项目):

 <style name="MainTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
    </style>
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
    <item name="color">#FFFFFF</item> 
</style>


文章来源: Xamarin Forms Android AppCompatActivity Toolbar background color is not changing