仿京东首页需要的布局

轮播的依赖
implementation ‘com.github.donkingliang:CustomBanner:1.1.3’

一、推荐类的布局——R.layout.one_item1

android:layout_width="match_parent"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_height="wrap_content"
android:gravity="center|top">




二、轮播图的布局——R.layout.banner_item

android:layout_width="match_parent"
android:layout_height="wrap_content">


三、九宫格布局
1.R.layout.fenlei_layout

android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">


2.**R.layout.fenlei_item**——适配器里的

android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
xmlns:fresco="http://schemas.android.com/apk/res-auto">



四、秒杀——R.layout.time_layout

android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">



五、为你推荐标题——R.layout.text_layout

android:layout_width="match_parent"
android:layout_height="wrap_content">


你可能感兴趣的:(仿京东首页需要的布局)