Skip to content

Commit 0b6db45

Browse files
JAVATECHIGJAVATECHIG
authored andcommitted
Added ViewFlipper example
1 parent 0a0e6f5 commit 0b6db45

File tree

18 files changed

+327
-0
lines changed

18 files changed

+327
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.javatechig.viewflipper"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<application
8+
android:icon="@drawable/ic_launcher"
9+
android:label="@string/app_name" >
10+
<activity
11+
android:name="com.javatechig.viewflipper.ViewFlipperSampleActivity"
12+
android:label="@string/app_name" >
13+
<intent-filter>
14+
<action android:name="android.intent.action.MAIN" />
15+
16+
<category android:name="android.intent.category.LAUNCHER" />
17+
</intent-filter>
18+
</activity>
19+
</application>
20+
21+
</manifest>

ViewFlipperExample/project.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system use,
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
10+
# Project target.
11+
target=android-14
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
4+
<translate
5+
android:duration="500"
6+
android:fromXDelta="100%p"
7+
android:toXDelta="0" />
8+
9+
<alpha
10+
android:duration="500"
11+
android:fromAlpha="0.1"
12+
android:toAlpha="1.0" />
13+
14+
</set>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
4+
<translate
5+
android:duration="500"
6+
android:fromXDelta="0"
7+
android:toXDelta="-100%p" />
8+
9+
<alpha
10+
android:duration="500"
11+
android:fromAlpha="1.0"
12+
android:toAlpha="0.1" />
13+
14+
</set>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
4+
<translate
5+
android:duration="500"
6+
android:fromXDelta="-100%p"
7+
android:toXDelta="0" />
8+
9+
<alpha
10+
android:duration="500"
11+
android:fromAlpha="0.1"
12+
android:toAlpha="1.0" />
13+
14+
</set>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
4+
<translate
5+
android:duration="500"
6+
android:fromXDelta="0"
7+
android:toXDelta="100%p" />
8+
9+
<alpha
10+
android:duration="500"
11+
android:fromAlpha="1.0"
12+
android:toAlpha="0.1" />
13+
14+
</set>
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)