Code Monkey home page Code Monkey logo

android-intent-library's Introduction

platform Android Arsenal JitPack License API

Made With Java Build With Love

GitHub followers GitHub forks GitHub stars GitHub watchers

Tweet

Android-Intent-Library

A library which will save you a lot of time from writing the same intent creation code. it consist of many intent creation codes like Share, Contacts, Email and etc, which you can easily use.

Contents

💻How to include

Add the repository to your project build.gradle:

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

And add the library to your module build.gradle:

dependencies {
    implementation 'com.github.ma3udmohammadi:Android-Intent-Library:1.0.0'
}

📄Usage

Showing the intent immediately

SettingIntents.from(this).setting().show();
SettingIntents.from(this).applicationSetting().show();

Build the intent and show it your self

startActivity(SettingIntents.from(this).setting().build());
startActivity(SettingIntents.from(this).applicationSetting().build());

📄List of Intents

  • AlarmIntents

    openAlarms()
    createAlarm(String message, int hour, int minutes, boolean skipUi)
    createAlarm(String message, int hour, int minutes, boolean skipUi, boolean vibrate)
    createAlarm(String message, int hour, int minutes, boolean skipUi, boolean vibrate, boolean isPm)
    Example
    AlarmIntents.from(this).openAlarms().show();
  • BrowserIntents

    openBrowser()
    openLink(String url)
    openLink(Uri uri)
    openGoogle()
    Example
    BrowserIntents.from(this).openBrowser().show();
  • CalculatorIntents

    openCalculator()
    Example
    CalculatorIntents.from(this).openCalculator().show();
  • CalendarIntents

    openCalendar()
    Example
    CalendarIntents.from(this).openCalendar().show();
  • CameraIntents

    openPhotoCamera()
    openVideoCamera()
    capturePhoto(Uri location, String fileName)
    captureVideo(Uri location, String fileName)
    Example
    startActivityForResult(CameraIntents.from(this).openPhotoCamera().build(), RequestTag.IMAGE_CAMERA);
  • ContactIntents

    openContacts()
    viewContact(String name)
    editContact(String name)
    editContact(String name, String newEmail)
    insertContact(String name, String phone, String email, String company, String job, String notes)
    pickContact()
    pickSpecificContactData()
    Example
    ContactIntents.from(this).openContacts().show();
  • EmailIntents

    openEmail()
    sendEmail(String to, String subject, String message)
    sendEmail(String[] to, String subject, String message)
    sendEmail(String[] addresses, String[] cc, String[] bcc, String subject, String message)
    Example
    EmailIntents.from(this).openEmail().show();
  • EventIntents

    createEvent(String title, String description)
    createEvent(String title, String description, String location, long begin, long end, int color, boolean allDay)
    Example
    EventIntents.from(this).createEvent("Birthday", "Make a birthday cake").show();
  • FileIntents

    fileChooser()
    pickFile()
    pickImageFile()
    pickImageFile(Boolean allowMultiple, Boolean localOnly)
    Example
    startActivityForResult(FileIntents.from(this).fileChooser().build(), RequestTag.FILE_CHOOSE);
  • GalleryIntents

    openGallery()
    pickImage()
    Example
    startActivityForResult(GalleryIntents.from(this).pickImage().build(), RequestTag.PICK_IMAGE);
  • MapIntents

    locationOf(String address, String placeTitle)
    locationOf(float latitude, float longitude)
    locationOf(float latitude, float longitude, String placeName)
    navigateTo(String address)
    navigateTo(float latitude, float longitude)
    streetViewOf(float latitude, float longitude)
    streetViewOf(float latitude, float longitude, float zoom)
    streetViewOf(float latitude, float longitude, float zoom, int mapZoom)
    showLocationServices()
    Example
    MapIntents.from(this).locationOf("Champ de Mars, Avenue Anatole France, Paris, France", "Eiffel Tower").show();
  • MarketIntents

    showThisAppInMarket()
    showThisAppInGooglePlay()
    showThisAppInAmazon()
    showInMarket(String packageName)
    showInGooglePlay(String packageName)
    showInAmazon(String packageName)
    showGooglePlay()
    searchAppInGooglePlay(String appName)
    Example
    MarketIntents.from(this).showInMarket("com.instagram.android").show();
  • MediaIntents

    playAudio(String url)
    showImage(String url)
    playVideo(String url)
    playYouTubeVideo(String videoId)
    Example
    MediaIntents.from(this).playYouTubeVideo("gOzdLhJG2EQ").show();
  • MessagingIntents

    openMessages()
    createEmptySms()
    createEmptySms(String phoneNumber)
    createEmptySms(String[] phoneNumbers)
    createSms(String body)
    createSms(String body, String phoneNumber)
    createSms(String body, String[] phoneNumbers)
    Example
    MessagingIntents.from(this).createEmptySms().show();
  • MusicIntents

    openPlayMusic()
    Example
    MusicIntents.from(this).openPlayMusic().show();
  • PhoneIntents

    showDialNumber()
    showDialNumber(String phoneNumber)
    callNumber(String phoneNumber)
    Example
    PhoneIntents.from(this).showDialNumber().show();
  • SearchIntents

    searchInGooglePlay(String query)
    searchWeb(String query)
    Example
    SearchIntents.from(this).searchInGooglePlay("Instagram").show();
  • SettingIntents

    setting()
    apnSetting()
    bluetoothSetting()
    dateSetting()
    displaySetting()
    localeSetting()
    securitySetting()
    wifiSetting()
    wirelessSetting()
    accessibilitySetting()
    applicationSetting()
    captioningSetting()
    castSetting()
    dreamSetting()
    airplaneModeSetting()
    inputMethodSetting()
    locationSourceSetting()
    internalStorageSetting()
    memoryCardSetting()
    homeSetting()
    nfcSetting()
    nfcSharingSetting()
    nfcPaymentSetting()
    printSetting()
    privacySetting()
    searchSetting()
    soundSetting()
    syncSetting()
    webViewSetting()
    vpnSetting()
    applicationDetailSetting(String packageName)
    applicationDevelopmentSetting()
    batterySaverSetting()
    dataRoamingSetting()
    deviceInfoSetting()
    hardKeyboardSetting()
    manageApplicationSetting()
    manageWriteSetting()
    networkOperatorSetting()
    notificationListenerSetting()
    usageAccessSetting()
    userDictionarySetting()
    voiceInputSetting()
    vrListenerSetting()
    wifiIpSetting()
    ignoreBatteryOptimizationSetting()
    manageAllApplicationSetting()
    manageDefaultAppsSetting()
    inputMethodSubtypeSetting()
    notificationPolicyAccessSetting()
    ignoreBackgroundDataRestrictionsSetting(String packageName)
    Example
    SettingIntents.from(this).setting().show();
  • ShareIntents

    shareText(String subject, String message)
    shareText(String subject, String message, String chooserDialogTitle)
    Example
    ShareIntents.from(this).shareText("Subject example","message example").show();
  • TimerIntents

    createTimer(String subject, int seconds, boolean skipUi)
    Example
    TimerIntents.from(this).createTimer("Run", 180, false).show();
  • VoiceRecorderIntents

    openVoiceRecorder()
    Example
    startActivityForResult(VoiceRecorderIntents.from(this).openVoiceRecorder().build(), RequestTag.RECORD_VOICE);

❓FAQ

some intents will return data, which should be handeled in onActivityResult, use .build and startActivityForResult for them. Example

startActivityForResult(VoiceRecorderIntents.from(this).openVoiceRecorder().build(), RequestTag.RECORD_VOICE);

Android-Intent-Library doesn't handle the returned data, you need to handle them your self in onActivityResult.

📄Hall of Fame

Using Android-Intent-Library in your app and want it to get listed here? Email me at: [email protected]

📄Changelog

See the CHANGELOG.md file.

👍Contribution

See the CONTRIBUTING.md file.

📃License

Copyright 2019 ma3udmohammadi

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.

android-intent-library's People

Contributors

kingdom2011 avatar ma3udmohammadi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.