0

我很难获得应该显示的结果,如 android 开发者网站上的第一个应用程序项目的第二步中所述:developer.android.com/training/basics/firstapp/starting-activity.html#receivetheintent

我创建了第一个意图并复制了所有其他代码,但是在运行项目时,我收到一个没有输入元素的空白 android 屏幕。这是模拟器的样子: http ://s1278.beta.photobucket.com/user/cetmrw791346/media/1_zps116f17a9.png.html

我已经在 Nexus 类型下设置了运行配置,并分配了 512MB RAM,所以我不确定这是否与 Java SDK (7.0)(JDK 不是 JRE)的安装问题有关,或者如果它可能是Android SDK。我相当确定我已经正确设置了所有内容。我正在为移动开发人员使用 Eclipse(我很确定它是一个 IDE),然后从 File、New Project 创建一个新的 Android App 项目。这是我的包资源管理器的样子:http ://s1278.beta.photobucket.com/user/cetmrw791346/media/2_zps0f2b94a2.png.html

我不确定如何进一步解决问题,并且非常感谢任何额外的帮助。再次感谢您的帮助。

以下是相关文件:

**AndroidManifest.xml**


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.firstapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.firstapp.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.firstapp.DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.example.firstapp.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.firstapp.MainActivity" />
        </activity>
    </application>

</manifest>

    **MainActivity.java**


    package com.example.firstapp;

    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.View;
    import android.widget.EditText;

    public class MainActivity extends Activity {

        public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }


        /** Called when the user clicks the Send button */
        public void sendMessage(View view) {
            Intent intent = new Intent(this, DisplayMessageActivity.class);
            EditText editText = (EditText) findViewById(R.id.edit_message);
            String message = editText.getText().toString();
            intent.putExtra(EXTRA_MESSAGE, message);
            startActivity(intent);
        }
    }

    **activity_main.xml**
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        tools:context=".MainActivity" >
      <EditText android:id="@+id/edit_message"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:hint="@string/edit_message" />
    <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/button_send"
             android:onClick="sendMessage" />

    </LinearLayout>


    **strings.xml**


    <?xml version="1.0" encoding="utf-8"?>
    <resources>

        <string name="app_name">My First App</string>
        <string name="edit_message">Enter a message</string>
        <string name="button_send">Send</string>
        <string name="menu_settings">Settings</string>
        <string name="title_activity_main">MainActivity</string>
        <string name="title_activity_display_message">DisplayMessageActivity</string>
        <string name="action_settings">Settings</string>
        <string name="hello_world">Hello world!</string>

    </resources>

    activity_display_message.xml
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context=".DisplayMessageActivity" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world" />

    </RelativeLayout>


    **DisplayMessageActivity.java**


    package com.example.firstapp;

    import android.os.Bundle;
    import android.app.Activity;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.support.v4.app.NavUtils;
    import android.annotation.TargetApi;
    import android.os.Build;

    public class DisplayMessageActivity extends Activity {

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_display_message);
            // Show the Up button in the action bar.
            setupActionBar();
        }

        /**
        * Set up the {@link android.app.ActionBar}, if the API is available.
        */
        @TargetApi(Build.VERSION_CODES.HONEYCOMB)
        private void setupActionBar() {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
                getActionBar().setDisplayHomeAsUpEnabled(true);
            }
        }


        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            switch (item.getItemId()) {
            case android.R.id.home:
                // This ID represents the Home or Up button. In the case of this
                // activity, the Up button is shown. Use NavUtils to allow users
                // to navigate up one level in the application structure. For
                // more details, see the Navigation pattern on Android Design:
                //
                // http://developer.android.com/design/patterns/navigation.html#up-vs-back
                //
                NavUtils.navigateUpFromSameTask(this);
                return true;
            }
            return super.onOptionsItemSelected(item);
        }

    }
4

4 回答 4

1

您的模拟器似乎尚未启动。等待它启动到主屏幕,然后您的应用程序应该运行。

于 2013-03-11T13:15:08.120 回答
1

您似乎还没有执行您的应用程序(模拟器仍在启动)。

我对 Java 和 Android 都很陌生(仅仅几个星期,在线课程之后),但我发现模拟器真的很慢,我真的建议你插入一个真实的设备并使用它来运行应用程序.

将我的 Galaxy S2 连接到 Linux 并单击 RUN 时,Eclipse 允许您使用它来执行应用程序。在我正在学习的课程示例中,应用程序只需几秒钟即可启动,而在模拟器中运行它们会很痛苦。

如果您仍然需要使用模拟器,您可以通过在 ADT 中编辑虚拟设备的属性并打开“[X] 使用快照”标志来加速它。通过激活这个标志,你不会每次都“关闭”和“打开”“虚拟设备”:当你关闭它时,它的当前状态将作为快照保存到磁盘,当你再次运行它时,你无需等待它启动。将使用快照并且虚拟设备将启动得非常快。

于 2013-03-11T13:45:27.900 回答
1

几点:

  1. 看来您并没有让您的应用程序真正启动。您发布的第一个屏幕只是模拟器的“启动”屏幕
  2. 您是否尝试过切换到 Eclipse 中的调试透视图?在底部,您将看到 Eclipse 实际在做什么。您必须切换到控制台视图和/或查看 logcat 以查看更多详细信息,但这实际上应该对您有所帮助。
  3. 如果您在启动模拟器时遇到问题,您可以自行测试它。您可以(例如)选择 Eclipse 上栏中的两个 Android 图标中的第二个。它应该是说“Android虚拟设备管理器”的那个。当您选择它时,它会显示您配置的模拟器,但您也可以配置新的模拟器。您可以提前启动其中一个,看看它们是如何工作的。
于 2013-03-11T13:16:10.813 回答
0

在真实设备上遇到了一些类似的问题。在 helloworld 上运行良好后,在代码(构建 UI)进行一些更改后继续显示 HelloWorld。那是我不知道要解决的堆栈...

于 2013-03-28T10:15:56.433 回答