0

每当我尝试制作任何应用程序甚至是简单的 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>
4

2 回答 2

0

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

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

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

    android:id="@+id/button1"
    

    最好的方法是,给两个不同的ID。

  3. 我不知道你为什么使用String.format(),只是使用tb.setText("Hi");

于 2015-03-06T12:49:39.517 回答
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。

于 2015-03-09T11:47:22.727 回答