Index: /trunk/99.Twitter/default.properties =================================================================== --- /trunk/99.Twitter/default.properties (revision 50) +++ /trunk/99.Twitter/default.properties (revision 50) @@ -0,0 +1,13 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system use, +# "build.properties", and override values to adapt the script to your +# project structure. + +# Indicates whether an apk should be generated for each density. +split.density=false +# Project target. +target=android-7 Index: /trunk/99.Twitter/.classpath =================================================================== --- /trunk/99.Twitter/.classpath (revision 50) +++ /trunk/99.Twitter/.classpath (revision 50) @@ -0,0 +1,7 @@ + + + + + + + Index: /trunk/99.Twitter/.project =================================================================== --- /trunk/99.Twitter/.project (revision 50) +++ /trunk/99.Twitter/.project (revision 50) @@ -0,0 +1,33 @@ + + + 99.Twitter + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + Index: /trunk/99.Twitter/AndroidManifest.xml =================================================================== --- /trunk/99.Twitter/AndroidManifest.xml (revision 50) +++ /trunk/99.Twitter/AndroidManifest.xml (revision 50) @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + Index: /trunk/99.Twitter/src/com/hubmeka/twitter/Index.java =================================================================== --- /trunk/99.Twitter/src/com/hubmeka/twitter/Index.java (revision 50) +++ /trunk/99.Twitter/src/com/hubmeka/twitter/Index.java (revision 50) @@ -0,0 +1,36 @@ +package com.hubmeka.twitter; + + +import android.app.Activity; +import android.app.TabActivity; +import android.os.Bundle; +import android.widget.TabHost; + +public class Index extends TabActivity { + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + + TabHost th = getTabHost(); + + th.addTab( + th.newTabSpec("TAB_TEST1") + .setIndicator("twitter list") + .setContent(R.id.content01) + ); + + th.addTab( + th.newTabSpec("TAB_TEST2") + .setIndicator("...") + .setContent(R.id.content02) + ); + + th.addTab( + th.newTabSpec("TAB_TEST3") + .setIndicator("...") + .setContent(R.id.content03) + ); + } +} Index: /trunk/99.Twitter/res/values/strings.xml =================================================================== --- /trunk/99.Twitter/res/values/strings.xml (revision 50) +++ /trunk/99.Twitter/res/values/strings.xml (revision 50) @@ -0,0 +1,5 @@ + + + Hello World, Index! + Twitter + Index: /trunk/99.Twitter/res/layout/main.xml =================================================================== --- /trunk/99.Twitter/res/layout/main.xml (revision 50) +++ /trunk/99.Twitter/res/layout/main.xml (revision 50) @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + +