README.md
1
2 Android ActionBarCompat-ListPopupMenu Sample
3 ===================================
4
5 This sample shows how to display a pop up menu using PopupMenu from the v7 appcompat library.
6
7 Introduction
8 ------------
9
10 This sample displays a list of items and for each item, an icon can be clicked. When it is clicked, a pop up menu is shown, placed below the item, using the [PopupMenu][1] from the v7 appcompat support library.
11
12 The sample uses [ListFragment][2] from the v4 support library to display the list. It shows how to instantiate and display the [PopupMenu][1], as well as how to use `setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener())` to process the user actions on the [PopupMenu][1].
13
14 [1]: https://developer.android.com/reference/android/support/v7/widget/PopupMenu.html
15 [2]: https://developer.android.com/reference/android/support/v4/app/ListFragment.html
16
17 Pre-requisites
18 --------------
19
20 - Android SDK 25
21 - Android Build Tools v25.0.3
22 - Android Support Repository
23
24 Screenshots
25 -------------
26
27 <img src="screenshots/1-main.png" height="400" alt="Screenshot"/> <img src="screenshots/2-popup.png" height="400" alt="Screenshot"/>
28
29 Getting Started
30 ---------------
31
32 This sample uses the Gradle build system. To build this project, use the
33 "gradlew build" command or use "Import Project" in Android Studio.
34
35 Support
36 -------
37
38 - Google+ Community: https://plus.google.com/communities/105153134372062985968
39 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
40
41 If you've found an error in this sample, please file an issue:
42 https://github.com/googlesamples/android-ActionBarCompat-ListPopupMenu
43
44 Patches are encouraged, and may be submitted by forking this project and
45 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
46
47 License
48 -------
49
50 Copyright 2017 The Android Open Source Project, Inc.
51
52 Licensed to the Apache Software Foundation (ASF) under one or more contributor
53 license agreements. See the NOTICE file distributed with this work for
54 additional information regarding copyright ownership. The ASF licenses this
55 file to you under the Apache License, Version 2.0 (the "License"); you may not
56 use this file except in compliance with the License. You may obtain a copy of
57 the License at
58
59 http://www.apache.org/licenses/LICENSE-2.0
60
61 Unless required by applicable law or agreed to in writing, software
62 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
63 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
64 License for the specific language governing permissions and limitations under
65 the License.
66