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 15:29:44 浏览: 86
Android 中LayoutInflater.inflate()方法的介绍
这段代码是一个初始化偏好设置弹窗的方法。首先通过LayoutInflater加载布局文件,然后找到布局文件中的RecyclerView,并调用initPreferView()方法初始化RecyclerView。接下来创建一个PopupWindow对象,并设置其宽度和高度为MATCH_PARENT和WRAP_CONTENT。设置PopupWindow的外部可点击和可触摸属性。
在initPreferView()方法中,首先调用initRouteSortList()方法初始化路线排序列表。然后设置RecyclerView的布局管理器为GridLayoutManager,并设置滑动模式为不滑动。如果mItemsAdapter为空,则创建一个PreferItemsAdapter对象,并将其设置为RecyclerView的适配器。
在initRouteSortList()方法中,初始化一个空的路线排序列表mRouteSortList,并添加一些RouteSortModel对象到列表中,每个对象包含名称和对应的偏好设置常量。
以上是这段代码的基本逻辑。如有更多问题,请随时提问。
阅读全文