2

这是我的文件(Conversion.xml、Conversion.java 和 AndroidManifest.xml)。它只是一个项目的一小部分。我能够进入我想要将功率(以瓦特为单位)转换为分贝的屏幕。但是当我输入功率值并单击“转换”按钮时,应用程序崩溃并返回到我的应用程序主屏幕。

转换.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="vertical"
    tools:context=".ConvertTodB" >

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Enter the power in Watts"
        android:inputType="number"
        android:text="@string/et1" />

    <Button
        android:id="@+id/bConvert"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/Convert" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Result in dB"
        android:text="@string/et2" 
        android:textSize="20sp"/>

</LinearLayout>

转换.java

package com.example.rfconcepts;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

import java.lang.Math;

public class Conversion extends Activity {

    EditText entered_val;
    TextView result_val;
    Button bCon;

    @Override
    protected void onCreate(Bundle convertTodB) {

        super.onCreate(convertTodB);
        setContentView(R.layout.conversion);

        entered_val = (EditText) findViewById(R.string.et1);
        bCon = (Button) findViewById(R.id.bConvert);
        result_val = (TextView) findViewById(R.string.et2);

        bCon.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                if(entered_val.getText() != null && entered_val.getText().length() != 0){
                    result_val.setText(String.valueOf(10 * Math.log10(Double
                            .valueOf(entered_val.getText().toString()))));
                }

            }
        });
    }
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.rfconcepts"
    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.rfconcepts.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.rfconcepts.Conversion"
            android:label="@string/app_name">
        </activity>
    </application>

</manifest>

我提前感谢您的建议。

PS:

这是我在阅读了针对此处发布的各种问题的大量解决方案后所做的事情的列表。

  • 在conversion.xml 中,我没有使用onClickListener,而是添加了属性“android:onClick =”onClickConvert”,并在Activity 类中添加了以下onClickConvert 方法。


public void onClickConvert(View v){
        if(entered_val.getText() != null && entered_val.getText().length() != 0){
            result_val.setText(String.valueOf(10 * Math.log10(Double
                    .valueOf(entered_val.getText().toString()))));
        }
    }


  • 将 Double.parseDouble() 更改为 Double.valueOf() (虽然,我认为这不是问题)

  • 检查 editText 本身是否为空,因此检查 if 语句。

4

3 回答 3

1
entered_val = (EditText) findViewById(R.string.et1);

你为什么指的是一个字符串?应该是身份证。

您没有为您的 EditTexts 声明 ID。做这样的事情:

<EditText
        [...]
        android:id="@+id/MyEditText"
         />

然后你可以这样引用它:

entered_val = (EditText) findViewById(R.Id.MyEditText);

也对您的 TextView 执行相同的操作。

第二个问题: EditText.getText()返回一个Editable,但你需要一个String. 像这样转换它:

 if(entered_val.getText().toString() != null && entered_val.getText().toString().length() != 0
于 2012-12-29T18:11:25.067 回答
0

您应在您的conversion.xml 的EditText 中创建一个ID,然后在Java 代码中访问它。发布您的 logcat 错误以获得更具体的答案

于 2012-12-29T18:16:07.923 回答
0

您需要在 power 和 result 中将参考 id 添加到 EDITTEXT

<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="vertical"
 tools:context=".ConvertTodB" >

<EditText
    android:id="@+id/et1" // add the reference id
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="Enter the power in Watts"
    android:inputType="number"
    android:text="@string/et1" />

<Button
    android:id="@+id/bConvert"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/Convert" />

<TextView
    android:id="@+id/et2"// add the reference id
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="Result in dB"
    android:text="@string/et2" 
    android:textSize="20sp"/>

还在你的java代码中用referenceid连接了那些edittext

    entered_val = (EditText) findViewById(R.id.et1); // wired up with the xml id of the component
    bCon = (Button) findViewById(R.id.bConvert);
    result_val = (TextView) findViewById(R.id.et2);// wired up with the xml id of the component
于 2012-12-29T18:17:20.717 回答