自定义spinner

private Spinner spinner;      

spinner = (Spinner) view.findViewById(R.id.rechange_spinner_pay);

private ArrayList<String> array;
array = new ArrayList<String>();
        //为spinner添加数据   网络操作
        array.add("4367 4200 6275 0764 889");
        array.add("9884 6784 0982 9612 012");
        array.add("6323 2324 4536 8956 313");
        array.add("6247 8760 5416 6546 648");
        array.add("7569 0946 2352 3165 844");
        //更改spinner适配器的样式
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(),
                R.layout.spinner_checked_text, array) {

            @Override
            public View getDropDownView(int position, View convertView,
                    ViewGroup parent) {
                View tview = view.inflate(getActivity(),
                        R.layout.spinner_item_layout, null);
                TextView label = (TextView) tview
                        .findViewById(R.id.spinner_item_label);
                ImageView check = (ImageView) tview
                        .findViewById(R.id.spinner_item_checked_image);
                label.setText(array.get(position));
                if (spinner.getSelectedItemPosition() == position) {
                    tview.setBackgroundColor(getResources().getColor(
                            R.color.yellow));
                    check.setImageResource(R.drawable.right);
                } else {
                    tview.setBackgroundColor(getResources().getColor(
                            R.color.gray));
                    check.setImageResource(R.drawable.left);
                }

                return tview;
            }

        };
        adapter.setDropDownViewResource(R.layout.spinner_item_layout);
        //绑定数据源
        spinner.setAdapter(adapter);

上面是主代码!




spinner_item_layout

spinner点击以后出来的下拉框的样式

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bottom_gray"
    android:padding="15dp" >

    <TextView
        android:id="@+id/spinner_item_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:textColor="@color/dimgray"
        android:textSize="17sp" />

    <ImageView
        android:id="@+id/spinner_item_checked_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@drawable/put" />

</RelativeLayout>

spinner_checked_text

spinner控件显示的样式

<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:padding="10dp"
    android:singleLine="true"
    android:textColor="@color/black"
    android:textSize="20sp" >

</CheckedTextView>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Android中,自定义`Spinner`视图通常涉及到创建一个自定义适配器(Adapter),以控制弹出选项列表的样式和内容。以下是如何实现这一步骤的: 1. **创建自定义Adapter**[^1] 首先,创建一个继承自`ArrayAdapter`或`BaseAdapter`的类,比如`CarBrandAdapter`,并重写关键方法如`getView()`来设置每个选项的显示内容和外观。 ```java public class CarBrandAdapter extends ArrayAdapter<String> { private final Context context; private final String[] carBrands; public CarBrandAdapter(Context context, int resource, String[] objects) { super(context, resource, objects); this.context = context; this.carBrands = objects; } @Override public View getView(int position, View convertView, ViewGroup parent) { // 如果convertView为空,创建一个新的View if (convertView == null) { LayoutInflater inflater = LayoutInflater.from(context); convertView = inflater.inflate(R.layout.custom_spinner_item, parent, false); } // 获取并设置Spinner项的内容 TextView textView = convertView.findViewById(R.id.spinner_text); textView.setText(carBrands[position]); // 其他可能的定制,如设置背景颜色或图标 return convertView; } } ``` 2. **在布局文件中设置Spinner** 在XML布局文件中,添加一个`Spinner`组件,并指定其宽度和高度为`wrap_content`,这样它会根据内容自动调整大小。还要设置`adapter`属性,指向自定义的适配器实例。 ```xml <Spinner android:id="@+id/carBrandSpinner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:entries="@array/car_brands_array" android:spinnerMode="dropdown" android:popupBackground="@drawable/custom_popup_background" /> ``` 其中,`@array/car_brands_array`是资源数组,包含你的选项数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值