Index: trunk/20.ImIntentTest/default.properties =================================================================== --- trunk/20.ImIntentTest/default.properties (revision 52) +++ trunk/20.ImIntentTest/default.properties (revision 52) @@ -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/20.ImIntentTest/.classpath =================================================================== --- trunk/20.ImIntentTest/.classpath (revision 52) +++ trunk/20.ImIntentTest/.classpath (revision 52) @@ -0,0 +1,7 @@ + + + + + + + Index: trunk/20.ImIntentTest/.project =================================================================== --- trunk/20.ImIntentTest/.project (revision 52) +++ trunk/20.ImIntentTest/.project (revision 52) @@ -0,0 +1,33 @@ + + + 20.ImIntentTest + + + + + + 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/20.ImIntentTest/AndroidManifest.xml =================================================================== --- trunk/20.ImIntentTest/AndroidManifest.xml (revision 52) +++ trunk/20.ImIntentTest/AndroidManifest.xml (revision 52) @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + Index: trunk/20.ImIntentTest/src/soo/elements/intent/ImIntentTest.java =================================================================== --- trunk/20.ImIntentTest/src/soo/elements/intent/ImIntentTest.java (revision 52) +++ trunk/20.ImIntentTest/src/soo/elements/intent/ImIntentTest.java (revision 52) @@ -0,0 +1,33 @@ +package soo.elements.intent; + +import android.app.Activity; +import android.content.Intent; +import android.net.Uri; +import android.os.Bundle; +import android.view.View; +import android.view.View.OnClickListener; +import android.widget.Button; +import android.widget.EditText; + +public class ImIntentTest extends Activity { + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + + final EditText et = (EditText)findViewById(R.id.editText01); + Button b = (Button)findViewById(R.id.button01); + + b.setOnClickListener(new OnClickListener() { + + @Override + public void onClick(View v) { + // TODO Auto-generated method stub + String str = "tel:"+et.getText().toString(); //����몄������誘명� spec + //startActivity(new Intent(Intent.ACTION_DIAL,Uri.parse(str))); + startActivity(new Intent(Intent.ACTION_DIAL,Uri.parse(str))); + } + }); + } +} Index: trunk/20.ImIntentTest/res/values/strings.xml =================================================================== --- trunk/20.ImIntentTest/res/values/strings.xml (revision 52) +++ trunk/20.ImIntentTest/res/values/strings.xml (revision 52) @@ -0,0 +1,5 @@ + + + Hello World, ImIntentTest! + ImIntentTest + Index: trunk/20.ImIntentTest/res/layout/main.xml =================================================================== --- trunk/20.ImIntentTest/res/layout/main.xml (revision 52) +++ trunk/20.ImIntentTest/res/layout/main.xml (revision 52) @@ -0,0 +1,29 @@ + + + + + + +