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

溫馨提示×

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
河西区| 靖宇县| 珲春市| 盐边县| 霍山县| 辰溪县| 恩施市| 临安市| 吉安县| 大连市| 郸城县| 北宁市| 客服| 西丰县| 清苑县| 普定县| 开江县| 常熟市| 增城市| 凤城市| 子洲县| 垦利县| 定日县| 马尔康县| 轮台县| 湖州市| 乌拉特中旗| 宁远县| 漠河县| 富顺县| 福建省| 隆安县| 南乐县| 大渡口区| 美姑县| 阳原县| 闽侯县| 临汾市| 隆安县| 南乐县| 鲁甸县|