All Projects β†’ pranaypatel512 β†’ Androidlivetemplates

pranaypatel512 / Androidlivetemplates

Licence: apache-2.0
πŸš€ A curated android templates to make android development more easy and fast πŸ”‹ !

Projects that are alternatives of or similar to Androidlivetemplates

Debug Badge
Add badge(version code, version name, etc) for your DEBUG APK.
Stars: ✭ 75 (-34.21%)
Mutual labels:  android-studio
Android Kubernetes Blockchain
WARNING: This repository is no longer maintained ⚠️ This repository will not be updated. The repository will be kept available in read-only mode. Refer to https://developer.ibm.com/patterns/category/blockchain/ for other blockchain code patterns.
Stars: ✭ 105 (-7.89%)
Mutual labels:  android-studio
App onboarding
In this tutorial I will be showing you how to create Onboarding screen in Android Studio from scratch without using any library.
Stars: ✭ 110 (-3.51%)
Mutual labels:  android-studio
Googledeveloperscolorscheme
Color scheme for Android Studio and IntelliJ, inspired by code snippets style seen on Google Developers website
Stars: ✭ 86 (-24.56%)
Mutual labels:  android-studio
Coursera Java For Android
Solutions for the course Java for Android
Stars: ✭ 94 (-17.54%)
Mutual labels:  android-studio
Android code arbiter
ι’ˆε―ΉAndroid Studioηš„ζΊη ζ‰«ζε·₯ε…·
Stars: ✭ 105 (-7.89%)
Mutual labels:  android-studio
Dagger2 Sample
A sample app to demo how to implement dagger in Android using Dagger Android Support library
Stars: ✭ 72 (-36.84%)
Mutual labels:  android-studio
Android Styler
Android Studio / IDEA plugin that helps to create styles
Stars: ✭ 110 (-3.51%)
Mutual labels:  android-studio
Is Engine
SFML C++ game engine that allows to create games on Web (HTML 5 - CSS 3), Android and PC
Stars: ✭ 94 (-17.54%)
Mutual labels:  android-studio
Twittercompose
TwitterCompose is an Android application πŸ“± for showcasing Jetpack Compose for building declarative UI in Android.
Stars: ✭ 109 (-4.39%)
Mutual labels:  android-studio
Androidtraining
Training course repository for android app development
Stars: ✭ 1,295 (+1035.96%)
Mutual labels:  android-studio
Android Databinding
this is the databinding framework of android . help to binding data to the view.
Stars: ✭ 93 (-18.42%)
Mutual labels:  android-studio
Livesmashbar
An elegant looking and easy to use informative library with LiveData integration for Android.
Stars: ✭ 107 (-6.14%)
Mutual labels:  android-studio
Android Circular Progress
Android custom view that loads a circular progress indicator using ImageView or FrameLayout
Stars: ✭ 75 (-34.21%)
Mutual labels:  android-studio
Android Ratingreviews
Simple star rating system bars, a view similar to the ones seen on Google Playstore. ⭐🌟✨
Stars: ✭ 110 (-3.51%)
Mutual labels:  android-studio
The Freedom Wrapper Project
This is the Original Freedom Wrapper Project repository. It is developed and maintained by Matthew Benchimol. The Freedom Wrapper Project is an Open Source and Free Android source code project. The project has moved to an organization page at: https://github.com/The-Freedom-Wrapper-Project
Stars: ✭ 75 (-34.21%)
Mutual labels:  android-studio
Mediapicker
Easy customizable picker for all your needs in Android application
Stars: ✭ 105 (-7.89%)
Mutual labels:  android-studio
Cameraxdemo
A sample camera app with CameraX API from Android Jetpack
Stars: ✭ 112 (-1.75%)
Mutual labels:  android-studio
Reel Search Android
Reel Search for Android is a UI/UX design for autocomplete action. It is a beautiful minimalistic addition to any use case.
Stars: ✭ 110 (-3.51%)
Mutual labels:  android-studio
Fastdex
πŸš€ 加快 apk ηš„ηΌ–θ―‘ι€ŸεΊ¦ πŸš€
Stars: ✭ 1,457 (+1178.07%)
Mutual labels:  android-studio

banner

AndroidLiveTemplates

πŸš€ A curated android templates to make android development more easy and fastπŸ”‹!

πŸ’‘ Goal

The main idea behind this repo is to share basic android development template which helps developers to write less code.

πŸ”¨ How to use:

Step 1: First download latest AndroidLiveTemplates from Live_templates_android.zip

Step 2: Open AndroidStudio and Choose menu File > and select Import Settings... from the menu.

Step 3: Specify live template configuration path by selection Live_templates_android.zip file.

Step 4: Now select the Live templates checkbox and click OK.

Step 5: After restarting AndroidStudio you will get the all templates at Live Templates by navigating File > Settings > Editor > Live Templates

πŸ“– Example:

We have added templates in individual templates group like AndroidManifest, AndroidXmlLayoutTemplates, AndroidGradle, AndroidXmlMenu etc.

1. AndroidXmlLayoutTemplates

Template Name Purpose Properties
center_parent Set view in the center of parent in the ConstraintLayout app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent"
center_vertical Set vertical constraint on view app:layout_constraintTop_toTopOf="@+id/VIEW_ID" app:layout_constraintBottom_toBottomOf="@+id/VIEW_ID"
center_vertical_parent Set vertical constraint on view with parent app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"
center_horizontal Set horizontal constraint on view app:layout_constraintStart_toStartOf="@+id/VIEW_ID" app:layout_constraintEnd_toEndOf="@+id/VIEW_ID"
center_horizontal_parent Set horizontal constraint on view with parent app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"

For more templates checkout AndroidXmlLayoutTemplates in wiki.

2. AndroidManifest

Template Name Purpose Properties
permission_storage Add read/write permissioin for external storage < uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> < uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
permission_location Add location permissioins in manifest < uses-permissions android:name="android.permission.ACCESS_COARSE_LOCATION"/> < uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

For more templates checkout AndroidManifest in wiki.

3. AndroidGradle

Template Name Purpose Properties
buildTypes Default buildTypes setup in gradle with release and debug buildTypes { release { minifyEnabled false ...} debug { minifyEnabled false ...} }

For more templates checkout AndroidGradle in wiki.

Screenshots

Center in parent
Screenshots

Android menu setup
Screenshots

Gradle build config setup
Screenshots

βž• Adding more templates!

we are Welcoming PR!

Step 1: Add new template(s) in your android studio aftert importing latest Live_templates_android.zip

Step 2: Export the setting with only "Live Templates" section. File -> Exports Settings -> Click on Select None to deselect other settings. -> Select Live Templates(schemes)

Exports Settings

Step 3: Upload latest settings file with new branch and Send PR.

Check out contribution guidelines CONTRIBUTING.md

πŸŽ₯ Videos guide

Blog

Checkout AndroidLiveTemplate blog post HERE by Jovche Mitrejchevski

Built With

βœ‰οΈ Get in touch!

Find this project useful ? ❀️

Support it by clicking the ⭐️ button on the upper right of this page. ✌️

License

   Copyright Β© 2019 Pranay Patel

   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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].