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

溫馨提示×

溫馨提示×

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

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

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

河间市| 阿克陶县| 南溪县| 磐安县| 肇东市| 杭锦后旗| 正定县| 元谋县| 巴林右旗| 宝兴县| 吴桥县| 浦城县| 故城县| 无棣县| 比如县| 舒兰市| 金溪县| 新建县| 五河县| 宁津县| 芜湖县| 涞源县| 静乐县| 镇原县| 彭山县| 民权县| 建昌县| 巴里| 株洲县| 登封市| 启东市| 白沙| 电白县| 新绛县| 卫辉市| 塔城市| 东安县| 青铜峡市| 敦化市| 南和县| 嵊州市|