First commit for ListViewExpandingCells.

Change-Id: I8d64562f8c7c0e207aef0b36df10ee3744dd446a
This commit is contained in:
Daniel Olshansky
2013-06-25 15:09:04 -07:00
parent dda1626d9e
commit 8cfd63c979
18 changed files with 1064 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.expandingcells"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="17"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name=".ExpandingCells"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>