Index: trunk/03.LayoutTest/default.properties
===================================================================
--- trunk/03.LayoutTest/default.properties (revision 11)
+++ trunk/03.LayoutTest/default.properties (revision 11)
@@ -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/03.LayoutTest/.classpath
===================================================================
--- trunk/03.LayoutTest/.classpath (revision 11)
+++ trunk/03.LayoutTest/.classpath (revision 11)
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/.project
===================================================================
--- trunk/03.LayoutTest/.project (revision 11)
+++ trunk/03.LayoutTest/.project (revision 11)
@@ -0,0 +1,33 @@
+
+
+ 03.LayoutTest
+
+
+
+
+
+ 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/03.LayoutTest/AndroidManifest.xml
===================================================================
--- trunk/03.LayoutTest/AndroidManifest.xml (revision 11)
+++ trunk/03.LayoutTest/AndroidManifest.xml (revision 11)
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/src/soo/ui/layout/LayoutTest.java
===================================================================
--- trunk/03.LayoutTest/src/soo/ui/layout/LayoutTest.java (revision 11)
+++ trunk/03.LayoutTest/src/soo/ui/layout/LayoutTest.java (revision 11)
@@ -0,0 +1,35 @@
+package soo.ui.layout;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.EditText;
+
+public class LayoutTest extends Activity {
+ /** Called when the activity is first created. */
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ //setContentView(R.layout.linearlayout);
+ //setContentView(R.layout.relativelayout);
+ //setContentView(R.layout.framelayout);
+ //setContentView(R.layout.absoutelayout);
+ //setContentView(R.layout.tablelayout);
+ //setContentView(R.layout.scrollview);
+ //setContentView(R.layout.testlayout);
+ setContentView(R.layout.testlayout2);
+ /*
+ final EditText et = (EditText)findViewById(R.id.et); //View 媛�껜瑜�return ���.
+ Button b1 = (Button)findViewById(R.id.b1);
+ b1.setOnClickListener(new OnClickListener() {
+ int i=0;
+ public void onClick(View v) {
+ // TODO Auto-generated method stub
+ et.setText("踰�����대┃ ��"+ ++i);
+ }
+ });
+ */
+ }
+}
Index: trunk/03.LayoutTest/res/values/strings.xml
===================================================================
--- trunk/03.LayoutTest/res/values/strings.xml (revision 11)
+++ trunk/03.LayoutTest/res/values/strings.xml (revision 11)
@@ -0,0 +1,5 @@
+
+
+ Hello World, LayoutTest!
+ 03.LayoutTest
+
Index: trunk/03.LayoutTest/res/layout/absoutelayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/absoutelayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/absoutelayout.xml (revision 11)
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/main.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/main.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/main.xml (revision 11)
@@ -0,0 +1,12 @@
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/tablelayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/tablelayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/tablelayout.xml (revision 11)
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/framelayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/framelayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/framelayout.xml (revision 11)
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/linearlayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/linearlayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/linearlayout.xml (revision 11)
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/relativelayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/relativelayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/relativelayout.xml (revision 11)
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/scrollview.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/scrollview.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/scrollview.xml (revision 11)
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/testlayout.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/testlayout.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/testlayout.xml (revision 11)
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/res/layout/testlayout2.xml
===================================================================
--- trunk/03.LayoutTest/res/layout/testlayout2.xml (revision 11)
+++ trunk/03.LayoutTest/res/layout/testlayout2.xml (revision 11)
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
Index: trunk/03.LayoutTest/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/03.LayoutTest/.settings/org.eclipse.jdt.core.prefs (revision 11)
+++ trunk/03.LayoutTest/.settings/org.eclipse.jdt.core.prefs (revision 11)
@@ -0,0 +1,5 @@
+#Mon Feb 08 16:30:48 KST 2010
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.source=1.5