我已经制作了一个自定义微调器,并且试图通过编程方式在自定义视图中更改布局的背景。我用这种方法尝试了很多更改布局背景的方法,但是它不起作用。如何设置背景可绘制的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>
activity_main.xml,我在其中使用ExtendSpinner
<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>
答案 0 :(得分:0)
使用它代替inflate
LayoutInflater mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
mInflater.inflate(R.layout.layout_spinner, this, true);
未经测试,但可能有效。