亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spinner實現選項的圖標與文本并排

發布時間:2024-08-19 09:07:29 來源:億速云 閱讀:80 作者:小樊 欄目:移動開發

要實現Spinner中選項的圖標與文本并排,可以使用自定義適配器來處理Spinner中每個選項的布局。以下是一個示例代碼:

  1. 創建一個自定義適配器類CustomAdapter繼承自ArrayAdapter,并重寫getView方法:
public class CustomAdapter extends ArrayAdapter<String> {
    private Context mContext;
    private List<String> mOptions;
    private List<Integer> mIcons;

    public CustomAdapter(Context context, int resource, List<String> objects, List<Integer> icons) {
        super(context, resource, objects);
        mContext = context;
        mOptions = objects;
        mIcons = icons;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View row = inflater.inflate(R.layout.spinner_row, parent, false);

        TextView textView = row.findViewById(R.id.text_view);
        ImageView imageView = row.findViewById(R.id.image_view);

        textView.setText(mOptions.get(position));
        imageView.setImageResource(mIcons.get(position));

        return row;
    }

    @Override
    public View getDropDownView(int position, View convertView, ViewGroup parent) {
        return getView(position, convertView, parent);
    }
}
  1. 創建一個包含TextView和ImageView的布局文件spinner_row.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/image_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="8dp"/>

    <TextView
        android:id="@+id/text_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</LinearLayout>
  1. 在Activity中設置Spinner的適配器為自定義適配器CustomAdapter:
List<String> options = Arrays.asList("Option 1", "Option 2", "Option 3");
List<Integer> icons = Arrays.asList(R.drawable.ic_option1, R.drawable.ic_option2, R.drawable.ic_option3);

Spinner spinner = findViewById(R.id.spinner);
CustomAdapter adapter = new CustomAdapter(this, R.layout.spinner_row, options, icons);
spinner.setAdapter(adapter);

通過以上步驟,你可以實現Spinner中選項的圖標與文本并排顯示。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

康马县| 瑞丽市| 泰和县| 密云县| 集安市| 辽源市| 萨迦县| 黎平县| 秭归县| 房产| 临清市| 太白县| 宜良县| 象山县| 尼玛县| 太谷县| 浏阳市| 平舆县| 日喀则市| 屏南县| 岫岩| 东乡族自治县| 张家界市| 综艺| 类乌齐县| 剑阁县| 汕头市| 商河县| 湖州市| 邹城市| 开远市| 荆门市| 林甸县| 岚皋县| 越西县| 南乐县| 龙江县| 泸溪县| 大荔县| 天台县| 定南县|