Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.miz.introactivity">

<application
android:allowBackup="true"
android:supportsRtl="true">

</application>

</manifest>
<manifest package="com.miz.introactivity" />
4 changes: 1 addition & 3 deletions library/src/main/res/drawable-v21/done_to_next.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<animated-vector
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:targetApi="21"
android:drawable="@drawable/done">

<target
android:name="done"
android:animation="@anim/done_to_next" />

</animated-vector>
</animated-vector>
4 changes: 1 addition & 3 deletions library/src/main/res/drawable-v21/next_to_done.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<animated-vector
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:targetApi="21"
android:drawable="@drawable/next">

<target
android:name="next"
android:animation="@anim/next_to_done" />

</animated-vector>
</animated-vector>
4 changes: 2 additions & 2 deletions library/src/main/res/drawable/done.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

<path
android:name="done"
android:fillColor="@android:color/white"
android:fillColor="#ffffff"
android:pathData="M18 32.34L9.66 24l-2.83 2.83L18 38l24-24-2.83-2.83z" />

</group>

</vector>
</vector>
4 changes: 2 additions & 2 deletions library/src/main/res/drawable/next.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

<path
android:name="next"
android:fillColor="@android:color/white"
android:fillColor="#ffffff"
android:pathData="M24 8l-2.83 2.83L32.34 22H8v4h24.34L21.17 37.17 24 40l16-16z" />

</group>

</vector>
</vector>
9 changes: 9 additions & 0 deletions library/src/main/res/values-v19/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="IntroActivity.Theme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@null</item>
<item name="android:windowTranslucentStatus">true</item>
</style>

</resources>
5 changes: 2 additions & 3 deletions library/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>

<style name="IntroActivity.Theme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@null</item>
<item name="android:windowTranslucentStatus" tools:targetApi="19">true</item>
</style>

</resources>
</resources>