2

我制作了一个自定义微调器,我正在尝试以编程方式更改自定义视图中布局的背景。我尝试了很多用这种方法改变布局背景,但它不起作用。如何设置像 xml 代码一样的背景可绘制对象?

提前致谢。

ExtendSpinner 类:

public class ExtendSpinner extends LinearLayout {

    private LinearLayout lay;
    private Spinner spinner;
    private ImageView img;

    public ExtendSpinner(Context context) {
        super(context);
        init(context, null);
    }

    public ExtendSpinner(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public ExtendSpinner(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context, attrs);
    }

    private void init(Context context, AttributeSet attrs){
        View view = inflate(context, R.layout.layout_spinner, this);
        lay = view.findViewById(R.id.spinnerLayout);
        spinner = view.findViewById(R.id.spinner);
        img = view.findViewById(R.id.spinnerButton);

        setShape(lay, GradientDrawable.RECTANGLE, 2, 2, Color.White, Color.Grey);
    }


    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    private void setShape(View v, int shapeType, int cornerRadius, int strokeSize, int backgroundColor, int borderColor) {
        GradientDrawable shape = new GradientDrawable();
        shape.setShape(shapeType);
        shape.setCornerRadius(cornerRadius);
        shape.setColor(backgroundColor);
        shape.setStroke(strokeSize, borderColor);
        v.setBackgroundDrawable(shape);
    }
}

布局

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/spinnerLayout"
    android:orientation="horizontal">

    <Spinner
        android:id="@+id/spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_margin="4dp"
        android:gravity="center"
        android:spinnerMode="dropdown"/>

    <ImageView
        android:id="@+id/spinnerButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>

</LinearLayout>

我使用 ExtendSpinner 的 activity_main.xml

<com.bvtech.toolslibrary.Layouts.ExtendCoordinatorLayout
    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:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ActivityMain">

    <com.bvtech.toolslibrary.Widget.ExtendSpinner
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        app:entries="@array/test_str"
        app:shapeType="rectangle"
        app:textColor="@color/colorAccent"/>

</com.bvtech.toolslibrary.Layouts.ExtendCoordinatorLayout>
4

1 回答 1

0

用这个代替inflate

LayoutInflater  mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
mInflater.inflate(R.layout.layout_spinner, this, true);

未经测试,但可能有效。

于 2018-09-12T08:24:58.883 回答