Skip to content

Commit d91dcc9

Browse files
JAVATECHIGJAVATECHIG
authored andcommitted
added async image loader for listview
1 parent f0f047a commit d91dcc9

29 files changed

Lines changed: 639 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.customizedlist"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="17" />
10+
11+
<uses-permission android:name="android.permission.INTERNET"/>
12+
13+
<application
14+
android:allowBackup="true"
15+
android:icon="@drawable/ic_launcher"
16+
android:label="@string/app_name"
17+
android:theme="@style/AppTheme" >
18+
<activity
19+
android:name="com.javatechig.customizedlist.MainActivity"
20+
android:label="@string/app_name" >
21+
<intent-filter>
22+
<action android:name="android.intent.action.MAIN" />
23+
24+
<category android:name="android.intent.category.LAUNCHER" />
25+
</intent-filter>
26+
</activity>
27+
</application>
28+
29+
</manifest>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** Automatically generated file. DO NOT MODIFY */
2+
package com.example.customizedlist;
3+
4+
public final class BuildConfig {
5+
public final static boolean DEBUG = true;
6+
}
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* aapt tool from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
8+
package com.example.customizedlist;
9+
10+
public final class R {
11+
public static final class attr {
12+
}
13+
public static final class color {
14+
public static final int list_row_default_bg=0x7f040003;
15+
public static final int list_row_pressed_bg=0x7f040004;
16+
public static final int list_row_selected_bg=0x7f040005;
17+
public static final int text_color_default=0x7f040000;
18+
public static final int text_color_inverse=0x7f040001;
19+
public static final int white=0x7f040002;
20+
}
21+
public static final class dimen {
22+
/** Default screen margins, per the Android Design guidelines.
23+
24+
Customize dimensions originally defined in res/values/dimens.xml (such as
25+
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
26+
27+
*/
28+
public static final int activity_horizontal_margin=0x7f050000;
29+
public static final int activity_vertical_margin=0x7f050001;
30+
}
31+
public static final class drawable {
32+
public static final int ic_launcher=0x7f020000;
33+
public static final int list_item_text_selector=0x7f020001;
34+
public static final int list_placeholder=0x7f020002;
35+
public static final int list_selector_flatcolor=0x7f020003;
36+
}
37+
public static final class id {
38+
public static final int action_settings=0x7f090005;
39+
public static final int custom_list=0x7f090000;
40+
public static final int date=0x7f090004;
41+
public static final int reporter=0x7f090003;
42+
public static final int thumbImage=0x7f090001;
43+
public static final int title=0x7f090002;
44+
}
45+
public static final class layout {
46+
public static final int activity_main=0x7f030000;
47+
public static final int list_row_layout=0x7f030001;
48+
}
49+
public static final class menu {
50+
public static final int main=0x7f080000;
51+
}
52+
public static final class string {
53+
public static final int action_settings=0x7f060001;
54+
public static final int app_name=0x7f060000;
55+
public static final int hello_world=0x7f060002;
56+
}
57+
public static final class style {
58+
/**
59+
Base application theme, dependent on API level. This theme is replaced
60+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
61+
62+
63+
Theme customizations available in newer API levels can go in
64+
res/values-vXX/styles.xml, while customizations related to
65+
backward-compatibility can go here.
66+
67+
68+
Base application theme for API 11+. This theme completely replaces
69+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
70+
71+
API 11 theme customizations can go here.
72+
73+
Base application theme for API 14+. This theme completely replaces
74+
AppBaseTheme from BOTH res/values/styles.xml and
75+
res/values-v11/styles.xml on API 14+ devices.
76+
77+
API 14 theme customizations can go here.
78+
*/
79+
public static final int AppBaseTheme=0x7f070000;
80+
/** Application theme.
81+
All customizations that are NOT specific to a particular API-level can go here.
82+
*/
83+
public static final int AppTheme=0x7f070001;
84+
}
85+
}
118 KB
Loading
384 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To enable ProGuard in your project, edit project.properties
2+
# to define the proguard.config property as described in that file.
3+
#
4+
# Add project specific ProGuard rules here.
5+
# By default, the flags in this file are appended to flags specified
6+
# in ${sdk.dir}/tools/proguard/proguard-android.txt
7+
# You can edit the include path and order by changing the ProGuard
8+
# include property in project.properties.
9+
#
10+
# For more details, see
11+
# http://developer.android.com/guide/developing/tools/proguard.html
12+
13+
# Add any project specific keep options here:
14+
15+
# If your project uses WebView with JS, uncomment the following
16+
# and specify the fully qualified class name to the JavaScript interface
17+
# class:
18+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19+
# public *;
20+
#}
Lines changed: 14 additions & 0 deletions
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-17
9.37 KB
Loading
4.73 KB
Loading
14.8 KB
Loading

0 commit comments

Comments
 (0)