更改按钮背景颜色并保存旧背景

时间:2018-05-29 14:57:21

标签: android xamarin

我需要将按钮背景颜色更改为红色。

我试试这个button.SetBackgroundColor(Color.Red);但是按钮变大了,然后我尝试了这个button.BackgroundTintList = (ColorStateList.ValueOf(Color.Red));并且效果很好。

但之后我需要像以前一样放置背景按钮,我不能这样做。我有另一个具有相同背景的按钮,并尝试使用此处从那里复制 Button anotherButton = _v.FindViewById<Button>(Resource.Id.bt_anotherButton); button.Background = anotherButton.Background;

但是,不是将另一个按钮背景等于按钮背景,而是相反,两个按钮都变为红色。

任何人都可以提供帮助吗?

2 个答案:

答案 0 :(得分:0)

您的按钮不会变大,但它正在获取默认Android按钮的填充。 您必须将色调设置为不修改背景设置的大小,您可以通过以下方式进行操作:

var previousTint = button.BackgroundTintList;
button.Background.SetTint (Color.HoloRedDark);

完成后,退回前一个色调。

答案 1 :(得分:0)

就像@hichame所说,你的按钮不会变大。您可以阅读thisthis,了解为什么按钮看起来更大。

关于按钮的颜色,您可以参考this使用android.R.drawable.btn_default

button.SetBackgroundResource(Android.Resource.Drawable.ButtonDefault);

重置按钮。但是,结果与原点按钮不同。

最后,我得到默认按钮的颜色:#D6D7D7

您可以使用此值将按钮的颜色重置为默认值:

button.Background.SetTintList(ColorStateList.ValueOf(Color.ParseColor("#D6D7D7")));

更新

在阅读this回答后,我找到了解决方案,您需要使用AppCompatButton,安装Xamarin.Android.Support.v7.AppCompat,在您的布局中使用它:

<?xml version="1.0" encoding="utf-8"?>
<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="vertical">
  <android.support.v7.widget.AppCompatButton
      android:id="@+id/bt1"
      android:layout_width="match_parent"
      android:layout_height="wrap_content" />
  <android.support.v7.widget.AppCompatButton
      android:id="@+id/bt2"
      android:layout_width="match_parent"
      android:layout_height="wrap_content" />
</LinearLayout>

SupportBackgroundTintList中使用MainActivity(这也就是您的返回值为空的原因):

public class MainActivity : AppCompatActivity,View.IOnClickListener
{
    AppCompatButton bt1;
    ColorStateList backgroundTintList;
    public void OnClick(View v)
    {
        bt1.SupportBackgroundTintList=(backgroundTintList);
        //bt1.SetBackgroundResource(Android.Resource.Drawable.ButtonDefault);
    }

    protected override void OnCreate(Bundle savedInstanceState)
    {
        base.OnCreate(savedInstanceState);

        // Set our view from the "main" layout resource
        SetContentView(Resource.Layout.activity_main);

        bt1 = FindViewById<AppCompatButton>(Resource.Id.bt1);
        AppCompatButton bt2 = FindViewById<AppCompatButton>(Resource.Id.bt2);

        backgroundTintList = bt2.SupportBackgroundTintList;

        bt1.SupportBackgroundTintList=ColorStateList.ValueOf(Color.Red);

        bt2.SetOnClickListener(this); 

    }
}

结果:

enter image description here