这是一个非常常用的筛选菜单,使用PopupWindow实现,已在多个项目中完美使用
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
jcenter()
}
}
Add the dependency
dependencies {
implementation 'cc.easyandroid:EasyDropDownMenu:1.1.2'
}
layout 文件
<cc.easyandroid.menu.widget.EasyDropDownGroup
android:id="@+id/easyDropDownMenuContainer"
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal">
<cc.easyandroid.menu.widget.CommonEasyDropDownMenu
android:id="@+id/menuFilter1"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
android:background="@color/q_ffffff"
android:clickable="true"
android:saveEnabled="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:menuTitle="單列單選"
app:menuTitleView="@layout/menu_title_layout1" />
...
</cc.easyandroid.menu.widget.EasyDropDownGroup>
publicclassMainFragmentextendsFragment {
EasyDropDownMenueasyDropDownMenu1;
EasyDropDownMenueasyDropDownMenu2;
EasyDropDownMenueasyDropDownMenu3;
EasyDropDownMenueasyDropDownMenu4;
PopEasyDropDownMenueasyDropDownMenu5;
PopEasyDropDownMenueasyDropDownMenu6;
ViewGroupcontainer;
EasyDropDownGroupeasyDropDownGroup;
@OverridepublicViewonCreateView(LayoutInflaterinflater, ViewGroupcontainer, BundlesavedInstanceState) {
returninflater.inflate(R.layout.content_main3, container, false);
}
@OverridepublicvoidonViewCreated(Viewview, @NullableBundlesavedInstanceState) {
super.onViewCreated(view, savedInstanceState);
easyDropDownGroup = view.findViewById(R.id.easyDropDownMenuContainer);
easyDropDownMenu1 = view.findViewById(R.id.menuFilter1);
easyDropDownMenu2 = view.findViewById(R.id.menuFilter2);
easyDropDownMenu3 = view.findViewById(R.id.menuFilter3);
easyDropDownMenu4 = view.findViewById(R.id.menuFilter4);
easyDropDownMenu5 = view.findViewById(R.id.menuFilter5);
easyDropDownMenu6 = view.findViewById(R.id.menuFilter6);
container = view.findViewById(R.id.container);
easyDropDownGroup.setMenuContentContainer(container);
easyDropDownMenu1.setMenuContentView(newSingleListMenuContentLayout(getActivity()));
easyDropDownMenu2.setMenuContentView(newMultiSelectSingleRowMenuContentLayout(getActivity()));
easyDropDownMenu3.setMenuContentView(newMultiSelectTowRowMenuContent1(getActivity()));
easyDropDownMenu4.setMenuContentView(newComplexMenuContentLayout2(getActivity()));
easyDropDownMenu5.setMenuContentView(newComplexMenuContentLayout2(getActivity()));
easyDropDownMenu6.setMenuContentView(newSingleListMenuContentLayout(getActivity()));
}
}Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
