Skip to content

Commit c5d35f5

Browse files
committed
Initial commit
0 parents  commit c5d35f5

24 files changed

+698
-0
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Binary files
2+
*.class
3+
*.dex
4+
5+
# Packages
6+
*.jar
7+
!*gradle-wrapper.jar
8+
*.apk
9+
*.ap_
10+
11+
# Generated files
12+
local.properties
13+
14+
# Generated folders
15+
out/
16+
bin/
17+
gen/
18+
build/
19+
target/
20+
.gradle/
21+
gen-external-apklibs/
22+
23+
# Project files
24+
.idea/
25+
*.iml
26+
.project
27+
.classpath
28+
.settings/
29+
30+
# Misc
31+
.DS_Store

AndroidManifest.xml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.customview.demo.app"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="15"
9+
android:targetSdkVersion="18" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="com.customview.demo.app.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
</application>
26+
27+
</manifest>

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
android-parallax-listview
2+
=========================
3+
4+
Android custom list view with parallax effect presented by Sergey Trembach at Java User Group event on Thu, Dec 11, 2014
5+
6+

project.properties

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-18

res/drawable-hdpi/cat0.png

426 KB
Loading

res/drawable-hdpi/cat1.png

429 KB
Loading

res/drawable-hdpi/cat2.png

482 KB
Loading

res/drawable-hdpi/cat3.png

451 KB
Loading

res/drawable-hdpi/ic_launcher.png

9.18 KB
Loading

res/layout/activity_main.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools"
3+
android:layout_width="match_parent"
4+
android:layout_height="match_parent"
5+
tools:context=".MainActivity" >
6+
7+
<com.customview.demo.app.DataListView
8+
android:id="@+id/data_list"
9+
android:layout_width="match_parent"
10+
android:layout_height="match_parent" />
11+
12+
</FrameLayout>

res/layout/data_element.xml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools"
3+
android:id="@+id/data_list_item"
4+
android:layout_width="match_parent"
5+
android:layout_height="match_parent" >
6+
7+
<ImageView
8+
android:id="@+id/data_image"
9+
android:layout_width="match_parent"
10+
android:layout_height="match_parent"
11+
android:scaleType="centerCrop" />
12+
13+
<View
14+
android:id="@+id/fading_view"
15+
android:layout_width="match_parent"
16+
android:layout_height="match_parent" />
17+
18+
</FrameLayout>

res/layout/last_element.xml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools"
3+
android:id="@+id/data_list_enditem"
4+
android:layout_width="match_parent"
5+
android:layout_height="match_parent" >
6+
7+
<TextView
8+
android:id="@+id/data_image"
9+
android:layout_width="match_parent"
10+
android:layout_height="match_parent"
11+
android:layout_gravity="center"
12+
android:gravity="center"
13+
android:text="@string/go_top"
14+
android:textColor="@color/magenta"
15+
android:textSize="26dp" />
16+
17+
<View
18+
android:id="@+id/fading_view"
19+
android:layout_width="match_parent"
20+
android:layout_height="match_parent" />
21+
</FrameLayout>

res/values-sw600dp/dimens.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw600dp devices (e.g. 7" tablets) here.
6+
-->
7+
8+
</resources>

res/values-sw720dp-land/dimens.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
6+
-->
7+
<dimen name="activity_horizontal_margin">128dp</dimen>
8+
9+
</resources>

res/values-v11/styles.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 11+. This theme completely replaces
5+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
8+
<!-- API 11 theme customizations can go here. -->
9+
</style>
10+
11+
</resources>

res/values-v14/styles.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 14+. This theme completely replaces
5+
AppBaseTheme from BOTH res/values/styles.xml and
6+
res/values-v11/styles.xml on API 14+ devices.
7+
-->
8+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
9+
<!-- API 14 theme customizations can go here. -->
10+
</style>
11+
12+
</resources>

res/values/colors.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<color name="magenta">#EF007E</color>
4+
</resources>

res/values/dimens.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<resources>
2+
3+
<!-- Default screen margins, per the Android Design guidelines. -->
4+
<dimen name="activity_horizontal_margin">16dp</dimen>
5+
<dimen name="activity_vertical_margin">16dp</dimen>
6+
7+
</resources>

res/values/strings.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<string name="app_name">com.test.app</string>
5+
<string name="action_settings">Settings</string>
6+
<string name="go_top">Return to the top</string>
7+
8+
</resources>

res/values/styles.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme, dependent on API level. This theme is replaced
5+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Light">
8+
<!--
9+
Theme customizations available in newer API levels can go in
10+
res/values-vXX/styles.xml, while customizations related to
11+
backward-compatibility can go here.
12+
-->
13+
</style>
14+
15+
<!-- Application theme. -->
16+
<style name="AppTheme" parent="AppBaseTheme">
17+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
18+
</style>
19+
20+
</resources>

src/com/customview/demo/app/Data.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.customview.demo.app;
2+
3+
public class Data {
4+
private final int mImageResource;
5+
6+
public Data(int resource) {
7+
mImageResource = resource;
8+
}
9+
10+
public int getImageResource() {
11+
return mImageResource;
12+
}
13+
}

0 commit comments

Comments
 (0)