我有点坚持一些android开发。我正在使用 Eclipse/ADT 并创建了一个 2 活动项目测试。
一切构建和模拟器都开始了,但我看不到我的应用程序。
我对此很陌生,可能会遗漏一些明显的东西。知道在哪里可以在模拟器上看到我的应用程序吗?
编辑
滑动工作,我设法到达测试应用程序(项目名称测试,所以我猜相同的应用程序名称)但我在屏幕上得到关注。
我期望,一个按钮和一些其他的东西,因为我的 main.xml 如下。
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I'm screen 1 (main.xml)"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Click me to another screen" />
肯定是我的一些错误,不知道是什么?
我的清单。
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".AppActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:name=".App2Activity" >
</activity>
</application>
我的 main.xml 文件如下。
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I'm screen 1 (main.xml)"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Click me to another screen" />