0

我有点坚持一些android开发。我正在使用 Eclipse/ADT 并创建了一个 2 活动项目测试。
在此处输入图像描述

一切构建和模拟器都开始了,但我看不到我的应用程序。

在此处输入图像描述

我对此很陌生,可能会遗漏一些明显的东西。知道在哪里可以在模拟器上看到我的应用程序吗?


编辑

滑动工作,我设法到达测试应用程序(项目名称测试,所以我猜相同的应用程序名称)但我在屏幕上得到关注。 在此处输入图像描述

我期望,一个按钮和一些其他的东西,因为我的 main.xml 如下。

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="I&apos;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&apos;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" />

4

1 回答 1

2

由于您的应用名称是Test,它肯定在 screen2 中。

只需从左向右滑动(拖动)屏幕,您就应该得到它。

希望能帮助到你 !!!

于 2012-06-12T06:01:38.600 回答