Skip to content

Commit

Permalink
Added a demo which uses Fragments via the support library.
Browse files Browse the repository at this point in the history
  • Loading branch information
MobiDevelop committed Feb 13, 2012
1 parent a4109b9 commit d31a90c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions split-pane-layout-demo/.classpath
Expand Up @@ -4,5 +4,6 @@
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="lib" path="N:/NEX/DEV/SDK/android-sdk-windows/extras/android/support/v4/android-support-v4.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
4 changes: 3 additions & 1 deletion split-pane-layout-demo/AndroidManifest.xml
Expand Up @@ -11,14 +11,16 @@
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".Demo"
android:name=".DemoFragment"
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=".DemoFragment$DetailsActivity" />
</application>

</manifest>
6 changes: 5 additions & 1 deletion split-pane-layout-demo/gen/com/mobidevelop/widget/R.java
Expand Up @@ -56,11 +56,15 @@ public static final class drawable {
public static final int splitter_bg_v=0x7f020002;
}
public static final class id {
public static final int details=0x7f040003;
public static final int horizontal=0x7f040000;
public static final int titles=0x7f040002;
public static final int vertical=0x7f040001;
}
public static final class layout {
public static final int main=0x7f030000;
public static final int fragment_layout=0x7f030000;
public static final int main=0x7f030001;
public static final int simple_list_item_checkable_1=0x7f030002;
}
public static final class string {
public static final int app_name=0x7f050001;
Expand Down

0 comments on commit d31a90c

Please sign in to comment.