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

溫馨提示×

Android怎么實現水平滾動的布局效果

小億
137
2024-04-07 18:27:45
欄目: 編程語言

要實現水平滾動的布局效果,可以使用HorizontalScrollView或RecyclerView。下面分別介紹兩種實現方式:

  1. 使用HorizontalScrollView:
<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <!-- 在這里添加水平滾動的子視圖 -->
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Item 1"/>
        
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Item 2"/>

        <!-- 添加更多子視圖 -->

    </LinearLayout>

</HorizontalScrollView>

在HorizontalScrollView內部添加一個LinearLayout,設置其orientation為horizontal,然后在LinearLayout中添加需要水平滾動的子視圖即可。

  1. 使用RecyclerView:

首先,在build.gradle文件中添加RecyclerView的依賴:

implementation 'androidx.recyclerview:recyclerview:1.2.0'

然后在布局文件中添加RecyclerView:

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/recyclerView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

接著在Activity或Fragment中初始化RecyclerView,并設置LayoutManager為LinearLayoutManager,并將方向設置為Horizontal:

RecyclerView recyclerView = findViewById(R.id.recyclerView);
LinearLayoutManager layoutManager = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(layoutManager);

List<String> data = new ArrayList<>();
// 添加數據到data中

RecyclerViewAdapter adapter = new RecyclerViewAdapter(data);
recyclerView.setAdapter(adapter);

最后,需要自定義RecyclerViewAdapter來展示數據:

public class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.ViewHolder> {

    private List<String> mData;

    public RecyclerViewAdapter(List<String> data) {
        mData = data;
    }

    @NonNull
    @Override
    public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_layout, parent, false);
        return new ViewHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
        holder.bindData(mData.get(position));
    }

    @Override
    public int getItemCount() {
        return mData.size();
    }

    public static class ViewHolder extends RecyclerView.ViewHolder {
        private TextView textView;

        public ViewHolder(@NonNull View itemView) {
            super(itemView);
            textView = itemView.findViewById(R.id.textView);
        }

        public void bindData(String data) {
            textView.setText(data);
        }
    }
}

在item_layout.xml中添加一個TextView用來顯示數據:

<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

通過以上兩種方式,可以實現Android中的水平滾動布局效果。

0
陆丰市| 文水县| 伊宁县| 陆川县| 全椒县| 福清市| 上饶市| 株洲县| 宜都市| 台山市| 西昌市| 万源市| 天等县| 闵行区| 永胜县| 铜陵市| 浙江省| 孟连| 玉环县| 湾仔区| 江川县| 布拖县| 界首市| 喀什市| 海丰县| 钦州市| 高平市| 安福县| 临高县| 沙洋县| 通州区| 东辽县| 华亭县| 社会| 鄂伦春自治旗| 水富县| 蒙自县| 眉山市| 菏泽市| 芜湖市| 财经|