apk给出错误"不幸的是,Helloapp1已停止"

时间:2015-03-06 12:05:45

标签: java android xml android-activity main-activity

每当我尝试使用任何应用程序甚至简单的hello world应用程序每次出现此类错误时,即使在Android虚拟设备和Android手机中也是如此,所以我想知道我每次都犯的错误是什么,任何人都可以使这个代码正确。所以我可以在我的手机上运行这个应用程序。

这是我的MainActivity_hello.java文件

package com.example.helloapp1;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity_hello extends Activity {

    TextView tb;
    Button b;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main_activity_hello);
        addListenerOnButton();       
        tb= (TextView) findViewById(R.id.Tbox);
    }

    private void addListenerOnButton() {
        // TODO Auto-generated method stub
         b = (Button)findViewById(R.id.button1);
         b.setOnClickListener(new OnClickListener()
         {
             public void onClick(View arg0) 
             {
                 tb.setText( String.format( " Hi ") );
              }

         });

    }

    @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_activity_hello, menu);
        return true;
    }
}

activity_main_activity_hello.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/button1"
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_hello" >

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

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/Tbox"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="44dp"
    android:text="Hit Me" />

</RelativeLayout>

的AndroidManifest.xml

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

2 个答案:

答案 0 :(得分:0)

可能有很多原因,你必须确定:

  1. R. import不是R.android,它引用了Android系统资源。如果是,您的按钮b将被引用到系统框架按钮。此系统框架按钮标有“button1”。 好吧,在你的情况下,我认为你有wright导入,因为使用textView的id没有问题。

  2. 您为RelativeLayout提供了与按钮相同的ID:

    android:id="@+id/button1"
    

    最好的方法是,给另一个,不同的身份。

  3. 我不知道您使用String.format()的原因,只需使用tb.setText("Hi");

答案 1 :(得分:0)

您正在声明相同的ID button1 两次,一次在布局中,一次为按钮。

将其更改为您的布局的其他内容,例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools" 
 android:id="@+id/holder1"   
 ...
>

由于您似乎开始使用Android开发,我建议您切换到使用Android Studio。