Skip to content

Instantly share code, notes, and snippets.

@adin234
Created April 7, 2015 09:43
Show Gist options
  • Select an option

  • Save adin234/dc94ddcce76012e2f998 to your computer and use it in GitHub Desktop.

Select an option

Save adin234/dc94ddcce76012e2f998 to your computer and use it in GitHub Desktop.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.sephiroth.android.sample.horizontalvariablelistviewdemo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:supportsRtl="true"
android:hardwareAccelerated="true">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SimpleHListActivity"
android:label="Simple List" />
<activity
android:name=".ExpandableListActivity"
android:label="Expandable List" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment