private void initPreferPopWindow() { View popView = LayoutInflater.from(getContext()).inflate(R.layout.dialog_pop_prefer, (ViewGroup) mRootView, false); mPreferRecyclerView = popView.findViewById(R.id.nsdk_route_sort_gv); initPreferView(); mPopWindow = new PopupWindow(popView, LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); mPopWindow.setOutsideTouchable(true); mPopWindow.setTouchable(true); } private void initPreferView() { initRouteSortList(); mPreferRecyclerView.setLayoutManager(new GridLayoutManager(getContext(), 3)); mPreferRecyclerView.setOverScrollMode(View.OVER_SCROLL_NEVER); if (mItemsAdapter == null) { mItemsAdapter = new PreferItemsAdapter(getContext(), mRouteSortList); mItemsAdapter.setClickPreferListener(this); } mPreferRecyclerView.setAdapter(mItemsAdapter); } private void initRouteSortList() { mRouteSortList = new ArrayList<>(); mRouteSortList.add(new RouteSortModel("智能推荐", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_DEFAULT)); mRouteSortList.add(new RouteSortModel("时间优先", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_TIME_FIRST)); mRouteSortList.add(new RouteSortModel("少收费", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_NOTOLL)); mRouteSortList.add(new RouteSortModel("躲避拥堵", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_AVOID_TRAFFIC_JAM)); mRouteSortList.add(new RouteSortModel("不走高速", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_NOHIGHWAY)); mRouteSortList.add(new RouteSortModel("高速优先", IBNRoutePlanManager.RoutePlanPreference .ROUTE_PLAN_PREFERENCE_ROAD_FIRST));
时间: 2024-04-18 21:29:12 浏览: 149
Android 中LayoutInflater.inflate()方法的介绍
这段代码是一个初始化偏好设置弹窗的方法。流程如下:
1. 使用LayoutInflater加载布局文件R.layout.dialog_pop_prefer,得到一个View对象popView。
2. 通过findViewById找到popView中的RecyclerView,赋值给mPreferRecyclerView。
3. 调用initPreferView()方法进行偏好设置的初始化。
4. 创建一个PopupWindow对象mPopWindow,并将popView作为其内容视图,设置PopupWindow的宽度为LinearLayout.LayoutParams.MATCH_PARENT,高度为LinearLayout.LayoutParams.WRAP_CONTENT。
5. 设置mPopWindow的外部可点击和可触摸属性。
6. 方法执行完毕。
在initPreferView()方法中:
1. 调用initRouteSortList()方法初始化路线排序列表mRouteSortList。
2. 设置mPreferRecyclerView的布局管理器为GridLayoutManager,每行显示3个子项。
3. 设置mPreferRecyclerView的滚动模式为不滚动,即禁止滚动。
4. 检查mItemsAdapter是否为空,如果为空,则创建一个PreferItemsAdapter对象,并将其设置为mPreferRecyclerView的适配器。
5. 将当前类实现的接口对象this设置为mItemsAdapter的点击偏好监听器。
6. 方法执行完毕。
initRouteSortList()方法用于初始化路线排序列表mRouteSortList。在该方法中:
1. 创建一个空的ArrayList对象mRouteSortList。
2. 向mRouteSortList中添加一些RouteSortModel对象,每个对象包含名称和对应的偏好设置常量。
3. 方法执行完毕。
以上是这段代码的基本逻辑。如果您有任何疑问,请随时提出。
阅读全文