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

溫馨提示×

溫馨提示×

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

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

ListView的列表項自定義布局

發布時間:2024-08-16 10:31:31 來源:億速云 閱讀:94 作者:小樊 欄目:移動開發

要在ListView中自定義列表項的布局,可以通過創建一個自定義的布局文件,并在自定義的適配器中使用該布局文件來顯示每個列表項。

首先,創建一個新的布局文件,例如custom_list_item.xml,定義列表項的布局:

<!-- custom_list_item.xml -->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/textview_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:textColor="@android:color/black"/>

    <TextView
        android:id="@+id/textview_description"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="14sp"
        android:textColor="@android:color/darker_gray"/>

</LinearLayout>

然后在自定義的適配器中使用該布局文件來顯示每個列表項。在適配器的getView()方法中,使用LayoutInflater來加載自定義的布局文件,并設置相應的數據:

public class CustomAdapter extends ArrayAdapter<String> {

    private Context mContext;
    private List<String> mList;

    public CustomAdapter(Context context, List<String> list) {
        super(context, R.layout.custom_list_item, list);
        mContext = context;
        mList = list;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view = convertView;
        if (view == null) {
            LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            view = inflater.inflate(R.layout.custom_list_item, null);
        }

        TextView titleTextView = view.findViewById(R.id.textview_title);
        TextView descriptionTextView = view.findViewById(R.id.textview_description);

        String item = mList.get(position);

        titleTextView.setText(item);
        descriptionTextView.setText("Description for " + item);

        return view;
    }
}

最后,在Activity或Fragment中,設置自定義的適配器給ListView,并將數據傳遞給適配器:

ListView listView = findViewById(R.id.listview);
List<String> data = new ArrayList<>();
data.add("Item 1");
data.add("Item 2");
data.add("Item 3");

CustomAdapter adapter = new CustomAdapter(this, data);
listView.setAdapter(adapter);

這樣就實現了在ListView中顯示自定義布局的列表項。您可以根據需要修改自定義布局文件和適配器來滿足您的需求。

向AI問一下細節

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

AI

阿荣旗| 广平县| 西青区| 西和县| 土默特右旗| 容城县| 永清县| 伊宁市| 安顺市| 沙田区| 罗田县| 北票市| 沙坪坝区| 茌平县| 肥乡县| 右玉县| 晴隆县| 建宁县| 夏河县| 抚松县| 随州市| 紫金县| 天水市| 永城市| 溆浦县| 织金县| 宜宾县| 神池县| 奇台县| 稻城县| 永昌县| 道孚县| 章丘市| 靖宇县| 开远市| 衡阳县| 辽中县| 玉树县| 青岛市| 麻阳| 开平市|