GitXplorerGitXplorer
t

IntentChooser

public
8 stars
2 forks
1 issues

Commits

List of commits on branch master.
Unverified
c087e86704a228eb513f8fb9c27cba692cabd643

Minor fix

ttuanchauict committed 7 years ago
Unverified
3f8170bbc544844804af73e569f6f191aaebf7f6

Version 0.1.7

ttuanchauict committed 7 years ago
Unverified
aac7411392b2ae20a86aba6e10d283ce7d72bb9b

Optimize import

ttuanchauict committed 7 years ago
Unverified
e884d33e6a83c7fc21aab1866fc4619bc3e5f1cd

Fix send SMS

ttuanchauict committed 7 years ago
Unverified
de154a11bfeb0bcbd9162a23c84b56185cb137e7

Able to rename captured image

ttuanchauict committed 7 years ago
Unverified
59163b9aee658aadf0e7543f500eea84227ae205

Minor change

ttuanchauict committed 8 years ago

README

The README file for this repository.

Simple way to make an intent chooser.

Installation

compile 'com.tuanchauict.intentchooser:intentchooser:0.1.+'

Usage

Intent intent = SharePlainTextChooserMaker.newChooser(MainActivity.this)
                        .add(new SMSChooser("SMS"))
                        .add(new FacebookChooser("https://google.com", false))
                        .add(new TwitterChooser("This is text for twitter"))
                        .add(new GooglePlusChooser("This is a text: http://google.com"))
                        .add(new EmailChooser("Email subject", "Email body"))
                        .add(new FacebookMessengerChooser("Facebook messenger"))
                        .add(new ViberChooser("Viber message"))
                        .add(new UniversalChooser("Universal subject", "Universal Text"))
                        .create("Share To");
startActivity(intent);

For Image selection, please take a look at example app's MainActivity