• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.google/23-Mar-2024-1812

Application/23-Mar-2024-998422

gradle/wrapper/23-Mar-2024-66

screenshots/23-Mar-2024-

CONTRIB.mdD23-Mar-20241.6 KiB3627

CONTRIBUTING.mdD23-Mar-20241.5 KiB3627

LICENSED23-Mar-202411.1 KiB204170

README.mdD23-Mar-20242.2 KiB6645

build.gradleD23-Mar-202410 110

gradlewD23-Mar-20245 KiB165122

gradlew.batD23-Mar-20242.3 KiB9166

packaging.yamlD23-Mar-2024526 1610

settings.gradleD23-Mar-202422 21

README.md

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