91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

苏尼特右旗| 图木舒克市| 江永县| 天气| 米泉市| 虎林市| 南开区| 玛沁县| 沙河市| 灌阳县| 灯塔市| 酒泉市| 宾阳县| 尉犁县| 沙坪坝区| 当涂县| 琼海市| 蕲春县| 湖北省| 新源县| 阿鲁科尔沁旗| 乌兰县| 金山区| 马鞍山市| 贵南县| 黄大仙区| 报价| 嵊州市| 离岛区| 驻马店市| 黔西县| 内江市| 宁陕县| 安仁县| 台南市| 阿图什市| 仙游县| 赤壁市| 山阴县| 东乌珠穆沁旗| 永登县|