Skip to content

Commit b97ac7d

Browse files
author
gabri
committed
ListViewPerformance
1 parent a54c0f4 commit b97ac7d

33 files changed

Lines changed: 807 additions & 0 deletions
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="it.gmariotti.android.example.listview"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="14"
9+
android:targetSdkVersion="17" />
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="it.gmariotti.android.example.listview.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+
<activity
26+
android:name="it.gmariotti.android.example.listview.ListActivity1"
27+
android:label="@string/title_activity_list_activity1"
28+
android:parentActivityName="it.gmariotti.android.example.listview.MainActivity" >
29+
<meta-data
30+
android:name="android.support.PARENT_ACTIVITY"
31+
android:value="it.gmariotti.android.example.listview.MainActivity" />
32+
</activity>
33+
<activity
34+
android:name="it.gmariotti.android.example.listview.ListActivity2"
35+
android:label="@string/title_activity_list_activity2"
36+
android:parentActivityName="it.gmariotti.android.example.listview.MainActivity" >
37+
<meta-data
38+
android:name="android.support.PARENT_ACTIVITY"
39+
android:value="it.gmariotti.android.example.listview.MainActivity" />
40+
</activity>
41+
<activity
42+
android:name="it.gmariotti.android.example.listview.ListActivity3"
43+
android:label="@string/title_activity_list_activity3"
44+
android:parentActivityName="it.gmariotti.android.example.listview.MainActivity" >
45+
<meta-data
46+
android:name="android.support.PARENT_ACTIVITY"
47+
android:value="it.gmariotti.android.example.listview.MainActivity" />
48+
</activity>
49+
</application>
50+
51+
</manifest>
72.5 KB
Loading
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
5.38 KB
Loading
3.12 KB
Loading
8.01 KB
Loading
14.6 KB
Loading
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<RelativeLayout 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+
android:paddingBottom="@dimen/activity_vertical_margin"
6+
android:paddingLeft="@dimen/activity_horizontal_margin"
7+
android:paddingRight="@dimen/activity_horizontal_margin"
8+
android:paddingTop="@dimen/activity_vertical_margin"
9+
tools:context=".ListActivity1" >
10+
11+
<TextView
12+
android:layout_width="wrap_content"
13+
android:layout_height="wrap_content"
14+
android:text="@string/hello_world" />
15+
16+
</RelativeLayout>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<RelativeLayout 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+
android:paddingBottom="@dimen/activity_vertical_margin"
6+
android:paddingLeft="@dimen/activity_horizontal_margin"
7+
android:paddingRight="@dimen/activity_horizontal_margin"
8+
android:paddingTop="@dimen/activity_vertical_margin"
9+
tools:context=".ListActivity2" >
10+
11+
<TextView
12+
android:layout_width="wrap_content"
13+
android:layout_height="wrap_content"
14+
android:text="@string/hello_world" />
15+
16+
</RelativeLayout>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<RelativeLayout 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+
android:paddingBottom="@dimen/activity_vertical_margin"
6+
android:paddingLeft="@dimen/activity_horizontal_margin"
7+
android:paddingRight="@dimen/activity_horizontal_margin"
8+
android:paddingTop="@dimen/activity_vertical_margin"
9+
tools:context=".ListActivity3" >
10+
11+
<TextView
12+
android:layout_width="wrap_content"
13+
android:layout_height="wrap_content"
14+
android:text="@string/hello_world" />
15+
16+
</RelativeLayout>

0 commit comments

Comments
 (0)