Helloworld不能在模拟器上运行

时间:2013-04-18 01:58:34

标签: java android adk

好的,这真的让我感到震惊。我在我的模拟器和Android设备上运行它。该代码不显示“Helloworld,Android -mykong.com”。我启动应用程序,在模拟器上找到它,单击它,然后它转到应用程序的界面。但是,它只是一个空白的屏幕!这个错误不是我找到应用程序的问题,它不是模拟器或Android手机,问题必须在代码或代码的结构/构建方式。我知道helloworld代码是100%正确的,因为它来自一个信誉良好的教程网站。这些是我的三对代码。请帮助,我迫切需要!

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test123"
    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.test123.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>
    </application>

</manifest>

MainActivity.java

package com.example.test123;

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

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void activity()
    {
    Intent helloWorld = new Intent(getApplicationContext(), HelloWorldjavaactivity.class );
    startActivity( helloWorld );
    }
    @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;
    }
}

HelloWorldjavaactivity.java

package com.example.test123;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloWorldjavaactivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        TextView text = new TextView(this);
        text.setText("Hello World, Android - mkyong.com");
        setContentView(text);
    }
}

activity_main.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=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="35dp"
        android:layout_marginTop="57dp"
        android:text="" 
        />

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

您没有启动HelloWorldjavaactivity.java活动。您需要在MainActivity中使用以下内容:

Intent helloWorld = new Intent(getApplicationContext(), HelloWorldjavaactivity.class );
startActivity( helloWorld );

当然,您需要通过某些按钮触发该代码,例如按下按钮。

消除第二个活动会更容易(因为您的MainActivity没有做任何事情),而是将代码放在MainActivity中。您还需要编辑MainActivity的布局,以便它包含适当的视图。