Android SDK chose 2.3.3
AndroidManifest.xml file contents as follows
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyf.dialer"
android:versionCode="1"
android:versionName="1.0" android:installLocation="auto">
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="10" />
<application
android:icon="@drawable/ic_action_search"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
app_name is:ChenyfDialer
in the manager can see the program in the simulation

But all procedures in the menu,cannot found

Try adding the below intent filters to your Activity, like this,
For more clarification check this Intent Filters