Android quickly implements the paging navigation menu function of Meituan and Ele.me homepage

Android quickly implements the paging navigation menu function of Meituan and Ele.me homepage

Some time ago, the company's mobile App added a module, which is similar to the group buying function of Meituan. The homepage has a paging menu function similar to Meituan. Those who have used the Meituan and Ele.me apps should be familiar with this function. The homepage menu can be switched by pages, similar to the switching effect of our banner ads, but it can only be switched manually. Therefore, we can use Viewpager to implement the entire paging effect, and we can use RecyclerView to implement the menu items inside, and dynamically change the menu items inside. In the future, if the product manager wants to change the requirements, it can be done with one or two lines of code. Isn't it smart? So today, our homepage paging menu effect can be implemented using ViewPager+RecyclerView. Now that we have the idea, let's start. First, let's take a look at the effect diagram of the implementation.

Home page layout file, the paging indicator is a separately encapsulated control, the code will be posted later

  1. <?xml version= "1.0" encoding= "utf-8" ?>
  2. <LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  3. xmlns:app= "http://schemas.android.com/apk/res-auto"  
  4. android:id= "@+id/home_entrance"  
  5. android:layout_width= "match_parent"  
  6. android:layout_height= "wrap_content"  
  7. android:orientation= "vertical" >
  8.  
  9. < android.support.v4.view.ViewPager
  10. android:id= "@+id/main_home_entrance_vp"  
  11. android:layout_width= "match_parent"  
  12. android:layout_height= "wrap_content" />
  13.  
  14. <com.stx.xhb.meituancategorydemo.widget.IndicatorView
  15. android:id= "@+id/main_home_entrance_indicator"  
  16. android:layout_width= "match_parent"  
  17. android:layout_height= "32dp"  
  18. android:layout_marginLeft= "16dp"  
  19. android:layout_gravity= "bottom"  
  20. android:layout_marginRight= "16dp"  
  21. app:gravity= "0"  
  22. app:indicatorColor= "#668b8989"  
  23. app:indicatorColorSelected= "#FF5722"  
  24. app:indicatorWidth= "6" />
  25.  
  26. </LinearLayout>

RecyclerView child control in ViewPager

  1. item_home_entrance_vp.xml
  1. <?xml version= "1.0" encoding= "utf-8" ?>
  2. <android.support.v7.widget.RecyclerView xmlns:android= "http://schemas.android.com/apk/res/android"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "wrap_content" />

Next is the layout file of the RecyclerView menu item

  1. <?xml version= "1.0" encoding= "utf-8" ?>
  2. <FrameLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "match_parent" >
  5.  
  6. <LinearLayout
  7. android:layout_width= "match_parent"  
  8. android:layout_height= "match_parent"  
  9. android:gravity= "center_horizontal"  
  10. android:orientation= "vertical"  
  11. android:padding= "6dp" >
  12.  
  13. <ImageView
  14. android:id= "@+id/entrance_image"  
  15. android:layout_width= "wrap_content"  
  16. android:layout_height= "0dp"  
  17. android:layout_margin= "2dp"  
  18. android:layout_weight= "1"  
  19. android:scaleType= "fitCenter" />
  20.  
  21. <TextView
  22. android:id= "@+id/entrance_name"  
  23. android:layout_width= "wrap_content"  
  24. android:layout_height= "wrap_content"  
  25. android:layout_margin= "2dp"  
  26. android:singleLine= "true"  
  27. android:textColor= "#80000000"  
  28. android:textSize= "12dp" />
  29. </LinearLayout>
  30.  
  31. < View  
  32. android:layout_width= "match_parent"  
  33. android:layout_height= "match_parent"  
  34. android:background= "@drawable/selector_trans_divider" />
  35.  
  36. </FrameLayout>

Now that the layout is created, let's take a look at the specific implementation code. Since our menu item has an icon and a name, for easy management, we can create a menu item entity class ModelHomeEntrance.class

  1. /**
  2. * Author: Mr.xiao on 2017/5/23
  3. *
  4. * @mail:[email protected]
  5. * @github:https://github.com/xiaohaibin
  6. * @describe: menu item entity class
  7. */
  8. public class ModelHomeEntrance {
  9. private String name = "" ;
  10. private int image;
  11.  
  12. public ModelHomeEntrance(String name , int image) {
  13. this.image = image;
  14. this.name = name ;
  15. }
  16.  
  17.  
  18. public   int getImage() {
  19. return image;
  20. }
  21.  
  22. public String getName() {
  23. return   name ;
  24. }
  25.  
  26. }

Since our paging effect is implemented with ViewPager, we need to create a ViewPager adapter, CagegoryViewPagerAdapter.Class

  1. package com.stx.xhb.meituancategorydemo.adapter;
  2.  
  3. import android.support.v4.view.PagerAdapter ;
  4. import android. view . View ;
  5. import android.view.ViewGroup ;
  6.  
  7. import java.util.List;
  8.  
  9. /**
  10. * Created by jxnk25 on 2016/9/21.
  11. *
  12. * @link https://xiaohaibin.github.io/
  13. * @email: [email protected]
  14. * @github: https://github.com/xiaohaibin
  15. * @description: Home page category ViewPager adapter
  16. */
  17. public class CagegoryViewPagerAdapter extends PagerAdapter {
  18.  
  19. private List< View > mViewList;
  20. public CagegoryViewPagerAdapter(List< View > mViewList) {
  21. this.mViewList = mViewList;
  22. }
  23.  
  24. @Override
  25. public void destroyItem(ViewGroup container, int position, Object object) {
  26. container.removeView(mViewList.get(position));
  27. }
  28.  
  29. @Override
  30. public Object instantiateItem(ViewGroup container, int position) {
  31. container.addView(mViewList.get(position));
  32. return (mViewList.get(position));
  33. }
  34.  
  35. @Override
  36. public   int getCount() {
  37. if (mViewList == null )
  38. return 0;
  39. return mViewList.size () ;
  40. }
  41.  
  42. @Override
  43. public boolean isViewFromObject( View   view , Object object) {
  44. return   view == object;
  45. }
  46. }

Now that we have the ViewPager adapter, we need to create a RecyclerView menu item list adapter, EntranceAdapter.Class

  1. package com.stx.xhb.meituancategorydemo.adapter;
  2.  
  3. import android.content.Context;
  4. import android.support.v7.widget.RecyclerView;
  5. import android.view.LayoutInflater ;
  6. import android. view . View ;
  7. import android.view.ViewGroup ;
  8. import android.widget.ImageView;
  9. import android.widget.LinearLayout;
  10. import android.widget.TextView;
  11.  
  12. import com.stx.xhb.meituancategorydemo.R;
  13. import com.stx.xhb.meituancategorydemo.model.ModelHomeEntrance;
  14. import com.stx.xhb.meituancategorydemo.utils.ScreenUtil;
  15.  
  16. import java.util.List;
  17.  
  18. /**
  19. * Author: Mr.xiao on 2017/5/23
  20. *
  21. * @mail:[email protected]
  22. * @github:https://github.com/xiaohaibin
  23. * @describe: Home page paging menu item list adapter
  24. */
  25. public class EntranceAdapter extends RecyclerView.Adapter<EntranceAdapter.EntranceViewHolder> {
  26.  
  27. private List<ModelHomeEntrance> mDatas;
  28.  
  29. /**
  30. * Page number subscript, starting from 0 (commonly known as page number)
  31. */
  32. private int mIndex;
  33.  
  34. /**
  35. * Maximum number of items displayed per page
  36. */
  37. private int mPageSize;
  38.  
  39. private Context mContext;
  40.  
  41. private final LayoutInflater mLayoutInflater;
  42.  
  43. private List<ModelHomeEntrance> homeEntrances;
  44.  
  45. public EntranceAdapter(Context context, List<ModelHomeEntrance> datas, int   index , int pageSize) {
  46. this.mContext = context;
  47. this.homeEntrances = datas;
  48. mPageSize = pageSize;
  49. mDatas = datas;
  50. mIndex = index ;
  51. mLayoutInflater = LayoutInflater. from (context);
  52.  
  53. }
  54.  
  55. @Override
  56. public EntranceViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
  57. return new EntranceViewHolder(mLayoutInflater.inflate(R.layout.item_home_entrance, null ));
  58. }
  59.  
  60. @Override
  61. public void onBindViewHolder(EntranceViewHolder holder, final int position) {
  62. /**
  63. * When binding the displayed data to the View , calculate the correct position = position + mIndex * mPageSize,
  64. */
  65. final int pos = position + mIndex * mPageSize;
  66. holder.entranceNameTextView.setText(homeEntrances.get(pos).getName());
  67. holder.entranceIconImageView.setImageResource(homeEntrances.get(pos).getImage());
  68. holder.itemView.setOnClickListener(new View .OnClickListener() {
  69. @Override
  70. public void onClick( View v) {
  71. ModelHomeEntrance entrance = homeEntrances.get(pos);
  72. // TODO: 2017/5/24 Click event processing
  73. }
  74. });
  75. }
  76.  
  77. @Override
  78. public   int getItemCount() {
  79. return mDatas. size () > (mIndex + 1) * mPageSize ? mPageSize : (mDatas. size () - mIndex * mPageSize);
  80. }
  81.  
  82. @Override
  83. public long getItemId( int position) {
  84. return position + mIndex * mPageSize;
  85. }
  86.  
  87. class EntranceViewHolder extends RecyclerView.ViewHolder {
  88.  
  89. private TextView entranceNameTextView;
  90. private ImageView entranceIconImageView;
  91.  
  92. public EntranceViewHolder( View itemView) {
  93. super(itemView);
  94. entranceIconImageView = (ImageView) itemView.findViewById(R.id.entrance_image);
  95. entranceNameTextView = (TextView) itemView.findViewById(R.id.entrance_name);
  96. LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, ( int ) (( float ) ScreenUtil.getScreenWidth() / 4.0f));
  97. itemView.setLayoutParams(layoutParams);
  98. }
  99. }
  100. }

Finally, the code of our MainActivity is implemented. Our overall idea is to display the items in pages according to the data source of the homepage menu items. The homepage determines the number of single-page menu displays. The total number divided by the number of single-page displays is the number of displayed pages. We then create a RecyclerView based on the number of pages and add it to the ViewPager's adapter. Let's take a look at how it works.

  1. package com.stx.xhb.meituancategorydemo;
  2.  
  3. import android.os.Bundle;
  4. import android.support.v4.view.ViewPager ;
  5. import android.support.v7.app.AppCompatActivity;
  6. import android.support.v7.widget.GridLayoutManager;
  7. import android.support.v7.widget.RecyclerView;
  8. import android.view.LayoutInflater ;
  9. import android. view . View ;
  10. import android.widget.FrameLayout;
  11. import android.widget.LinearLayout;
  12.  
  13. import com.stx.xhb.meituancategorydemo.adapter.CagegoryViewPagerAdapter;
  14. import com.stx.xhb.meituancategorydemo.adapter.EntranceAdapter;
  15. import com.stx.xhb.meituancategorydemo.model.ModelHomeEntrance;
  16. import com.stx.xhb.meituancategorydemo.utils.ScreenUtil;
  17. import com.stx.xhb.meituancategorydemo.widget.IndicatorView;
  18.  
  19. import java.util.ArrayList;
  20. import java.util.List;
  21.  
  22. public class MainActivity extends AppCompatActivity {
  23. public   static final int HOME_ENTRANCE_PAGE_SIZE = 10; //Number of home page menu pages
  24. private ViewPager entranceViewPager;
  25. private LinearLayout homeEntranceLayout;
  26. private List<ModelHomeEntrance> homeEntrances;
  27. private IndicatorView entranceIndicatorView;
  28.  
  29. @Override
  30. protected void onCreate(Bundle savedInstanceState) {
  31. super.onCreate(savedInstanceState);
  32. setContentView(R.layout.activity_main);
  33. initData();
  34. initView();
  35. init();
  36. }
  37.  
  38.  
  39. private void initView() {
  40. homeEntranceLayout = (LinearLayout) findViewById(R.id.home_entrance);
  41. entranceViewPager = (ViewPager) findViewById(R.id.main_home_entrance_vp);
  42. entranceIndicatorView = (IndicatorView) findViewById(R.id.main_home_entrance_indicator);
  43. }
  44.  
  45.  
  46. private void initData() {
  47. homeEntrances = new ArrayList<>();
  48. homeEntrances. add (new ModelHomeEntrance( "Gourmet" , R.mipmap.ic_category_0));
  49. homeEntrances.add (new ModelHomeEntrance( "Movie" , R.mipmap.ic_category_1));
  50. homeEntrances.add (new ModelHomeEntrance( "Hotel Accommodation" , R.mipmap.ic_category_2));
  51. homeEntrances.add (new ModelHomeEntrance( "Life Service" , R.mipmap.ic_category_3));
  52. homeEntrances.add (new ModelHomeEntrance( "KTV" , R.mipmap.ic_category_4));
  53. homeEntrances. add (new ModelHomeEntrance( "Travel" , R.mipmap.ic_category_5));
  54. homeEntrances.add (new ModelHomeEntrance( "Learning and Training" , R.mipmap.ic_category_6));
  55. homeEntrances.add (new ModelHomeEntrance( "汽车服务" , R.mipmap.ic_category_7));
  56. homeEntrances.add (new ModelHomeEntrance( "Photography" , R.mipmap.ic_category_8));
  57. homeEntrances.add (new ModelHomeEntrance( "Leisure and Entertainment" , R.mipmap.ic_category_10));
  58. homeEntrances. add (new ModelHomeEntrance( "美人" , R.mipmap.ic_category_11));
  59. homeEntrances.add (new ModelHomeEntrance( "Sports and Fitness" , R.mipmap.ic_category_12));
  60. homeEntrances.add ( new ModelHomeEntrance( "大Healthcare" , R.mipmap.ic_category_13));
  61. homeEntrances. add (new ModelHomeEntrance( "Group Buying" , R.mipmap.ic_category_14));
  62. homeEntrances. add (new ModelHomeEntrance( "Attractions" , R.mipmap.ic_category_16));
  63. homeEntrances.add (new ModelHomeEntrance( "All Categories" , R.mipmap.ic_category_15));
  64. }
  65.  
  66. private void init() {
  67. LinearLayout.LayoutParams layoutParams12 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, ( int ) (( float ) ScreenUtil.getScreenWidth() / 2.0f));
  68.  
  69. //Home menu paging
  70. FrameLayout.LayoutParams entrancelayoutParams = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, ( int ) (( float ) ScreenUtil.getScreenWidth() / 2.0f + 70));
  71. homeEntranceLayout.setLayoutParams(entrancelayoutParams);
  72. entranceViewPager.setLayoutParams(layoutParams12);
  73. LayoutInflater inflater = LayoutInflater. from (this);
  74. //Put the RecyclerView in the ViewPager:
  75. int pageSize = HOME_ENTRANCE_PAGE_SIZE;
  76. //The total number of pages is equal to the total number / the number of pages, and rounded.
  77. int pageCount = ( int ) Math.ceil(homeEntrances. size () * 1.0 / pageSize);
  78. List< View > viewList = new ArrayList< View >();
  79. for ( int   index = 0; index < pageCount; index ++) {
  80. //Each page inflates a new instance
  81. RecyclerView recyclerView = (RecyclerView) inflater.inflate(R.layout.item_home_entrance_vp, entranceViewPager, false );
  82. recyclerView.setLayoutParams(layoutParams12);
  83. recyclerView.setLayoutManager(new GridLayoutManager(MainActivity.this, 5));
  84. EntranceAdapter entranceAdapter = new EntranceAdapter(MainActivity.this, homeEntrances, index , HOME_ENTRANCE_PAGE_SIZE);
  85. recyclerView.setAdapter(entranceAdapter);
  86. viewList.add (recyclerView);
  87. }
  88. CagegoryViewPagerAdapter adapter = new CagegoryViewPagerAdapter(viewList);
  89. entranceViewPager.setAdapter(adapter);
  90. entranceIndicatorView.setIndicatorCount(entranceViewPager.getAdapter().getCount());
  91. entranceIndicatorView.setCurrentIndicator(entranceViewPager.getCurrentItem());
  92. entranceViewPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
  93. @Override
  94. public void onPageSelected( int position) {
  95. entranceIndicatorView.setCurrentIndicator(position);
  96. }
  97. });
  98. }
  99. }

The above is the main implementation code for realizing the paging menu effect on the home page. This paging menu effect is also common in our applications. Maybe someday the company's product manager will bring a mobile phone to you and ask you to realize this effect by following Meituan or something like that.

<<:  Three-stage folding, this may be the folding screen phone that Xiaomi is about to release

>>:  WeChat has undergone a huge change! It has been two days, but many people still don’t know...

Recommend

How to monetize such a hot e-sports market?

According to conservative estimates of growth rat...

WeChat announces eight hardware industry solutions for the first time

On August 25, at the final of the WeChat Hardware...

What is information flow promotion? What does information flow advertising do?

What is information flow marketing? For people ou...

11 real dilemmas and thoughts on To B operations

To B is a good business, but it is also true that...

How to promote to KOL? Here are 3 ways!

Why do KOLs ignore me? How to convince KOL to pro...

How to formulate a promotion plan?

Many times, the process of formulating a promotio...

New consumer brand marketing strategy layout!

The emergence of the new consumption wave has led...

The secret of Tencent Video’s advertising materials to achieve high volume

The author recently met a friend in the same indu...

Top 1000 Mobile Apps with the Most Active Users in October

This article shares with you the TOP 1000 mobile ...

H5 Mobile Debugging Guide

[[406894]] A brief summary: Mobile debugging pain...