https://github.com/armcha/meet-my-app
https://github.com/armcha/meet-my-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/armcha/meet-my-app
- Owner: armcha
- Created: 2016-09-11T15:42:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-19T11:02:56.000Z (over 9 years ago)
- Last Synced: 2026-02-10T16:54:10.890Z (4 months ago)
- Language: Java
- Size: 2.69 MB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meet-My-App
## Simple application intro




#Installation
-----------------------
Gradle:
```groovy
compile 'com.github.armcha:MeetMyApp:0.3.3'
```
Maven:
```xml
com.github.armcha
MeetMyApp
0.3.3
pom
```
I'm too lazy to add description :smile: :scream:
If anyone has free time to add description, please add it. :joy: see [sample][1] here
[1]: https://github.com/armcha/Meet-My-App/tree/master/app/src/main
Set your activity style ```android:theme="@style/MeetMyAppStyle"```
```xml
```
```java
public class MainActivity extends BaseIntroActivity{
@Override
public void init(@Nullable Bundle savedInstanceState) {
addFragment(new FragmentItem(R.layout.your_layout, ContextCompat.getColor(this, R.color.yourColor)));
//Options, intro will also work without this options
setVibrate(true);
setNextImage(R.drawable.next_icon);
setSkipText("SKIP");
setDoneText("DONE");
showSkipButton(true);
}
}
```
Your layout wouldn't contain background attribute!