如何在自定义标题栏上以编程方式设置背景颜色渐变?

Ang*_*loS 64 android gradient background android-layout

有很多教程和SO的问题,实现自定义标题栏.但是,在我的自定义标题栏中,我有一个自定义渐变背景,我想知道如何在我的代码中动态设置它.

这是我的自定义标题栏被调用的地方:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.foo_layout);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_bar); 
Run Code Online (Sandbox Code Playgroud)

这是我的custom_title_bar:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@layout/custom_title_bar_background_colors">
<ImageView   
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:src="@drawable/title_bar_logo"
              android:gravity="center_horizontal"
              android:paddingTop="0dip"/>

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

如您所见,线性布局的背景由此人定义:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient 
    android:startColor="#616261" 
    android:endColor="#131313"
    android:angle="270"
 />
<corners android:radius="0dp" />
</shape>
Run Code Online (Sandbox Code Playgroud)

我想要做的是在我的代码中动态设置这些渐变颜色.我不想像我们现在那样在我的XML文件中对它们进行硬编码.

如果您有更好的方法来设置背景渐变,我会对所有想法持开放态度.

先感谢您!!

slu*_*und 172

要在代码中执行此操作,请创建GradientDrawable.
设置角度和颜色的唯一机会在构造函数中.如果要更改颜色或角度,只需创建一个新的GradientDrawable并将其设置为背景

    View layout = findViewById(R.id.mainlayout);

    GradientDrawable gd = new GradientDrawable(
            GradientDrawable.Orientation.TOP_BOTTOM,
            new int[] {0xFF616261,0xFF131313});
    gd.setCornerRadius(0f);

    layout.setBackgroundDrawable(gd);
Run Code Online (Sandbox Code Playgroud)

为此,我向您的主LinearLayout添加了一个id,如下所示

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainlayout"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<ImageView   
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:src="@drawable/title_bar_logo"
              android:gravity="center_horizontal"
              android:paddingTop="0dip"/>

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

并将其用作自定义标题栏

    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.custom_title_bar);
    View title = getWindow().findViewById(R.id.mainlayout);
    title.setBackgroundDrawable(gd);
Run Code Online (Sandbox Code Playgroud)

  • 我认为`setBackgroundDrawable()`已被弃用,因为你应该使用`setBackground()`.请参阅http://stackoverflow.com/questions/27141279/setbackgrounddrawable-deprecated (6认同)
  • @slund有没有办法从中心发起渐变?而不是使用'GradientDrawable.Orientation.TOP_BOTTOM?' (2认同)