我是Android的新手,我使用Android Studio 2.2进行编码,我正在尝试构建我的第一个应用程序,基本上应用程序不会做太多或现在,然后添加对于我的应用的onClick
方法的价格方法,每当我点击按钮时应用都会崩溃。
下面我提供了错误消息和我自己的代码。
我从我的android工作室获取的错误消息是从logcat视图复制的:
10-06 09:46:00.338 30789-30789/com.example.abdulkarim.justjava E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.abdulkarim.justjava, PID: 30789
java.lang.IllegalStateException: Could not execute method for android:onClick
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:293)
at android.view.View.performClick(View.java:4660)
at android.view.View$PerformClick.run(View.java:19445)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:146)
at android.app.ActivityThread.main(ActivityThread.java:5603)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288)
at android.view.View.performClick(View.java:4660)
at android.view.View$PerformClick.run(View.java:19445)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:146)
at android.app.ActivityThread.main(ActivityThread.java:5603)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x2
at android.content.res.Resources.getText(Resources.java:1431)
at android.support.v7.widget.ResourcesWrapper.getText(ResourcesWrapper.java:52)
at android.widget.TextView.setText(TextView.java:4954)
at com.example.abdulkarim.justjava.MainActivity.display(MainActivity.java:33)
at com.example.abdulkarim.justjava.MainActivity.submit(MainActivity.java:24)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288)
at android.view.View.performClick(View.java:4660)
at android.view.View$PerformClick.run(View.java:19445)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:146)
at android.app.ActivityThread.main(ActivityThread.java:5603)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
10-06 09:47:13.823 30789-30789/? I/Process: Sending signal. PID: 30789 SIG: 9
这是我的MainActivity.java代码
package com.example.abdulkarim.justjava;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import java.text.NumberFormat;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/**
* This method is called when the order button is clicked.
*/
public void submit(View view){
int numberOfCoffees = 2;
display(numberOfCoffees);
displayPrice(numberOfCoffees * 10);
}
/**
* This method displays the given quantity on the screen
*/
private void display(int number){
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText(number);
}
/**
* This method displays the given price on the screen
*/
private void displayPrice(int number){
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
}
}
这是我在main_activity.xml
中的布局代码 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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"
android:orientation="vertical"
tools:context="com.example.abdulkarim.justjava.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Quantity"
android:textAllCaps="true"
android:textSize="16sp"
android:textColor="@android:color/darker_gray"
android:layout_marginBottom="16dp"/>
<TextView
android:id="@+id/quantity_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginBottom="16dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Price"
android:textAllCaps="true"
android:textSize="16sp"
android:textColor="@android:color/darker_gray"
android:layout_marginBottom="16dp"/>
<TextView
android:id="@+id/price_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="$0"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginBottom="16dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Order"
android:textAllCaps="true"
android:textSize="16sp"
android:onClick="submit"/>
</LinearLayout>
请帮我在代码中找到错误。
答案 0 :(得分:1)
你不能直接为你的Textview设置整数。只允许使用String,因此请更新您的方法,它将起作用:
/**
* This method displays the given quantity on the screen
*/
private void display(int number){
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText(number+"");
}
/**
* This method displays the given price on the screen
*/
private void displayPrice(int number){
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number)+"");
}
答案 1 :(得分:0)
问题在于显示函数的以下行,因为您不能通过调用setText方法将整数设置为TextView,而是作为字符串。
quantityTextView.setText(number);
请使用此
更改此行quantityTextView.setText(number+"");
答案 2 :(得分:0)
您的问题仅在
中 private void display(int number){
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText(number);
}
在这里你不能直接设置数字。只有野兔字符串除外。 你可以添加带有数字的空字符串来解决这个问题......
quantityTextView.setText(number+"");
和
NumberFormat.getCurrencyInstance().format(number)
返回String所以不需要添加任何内容......
答案 3 :(得分:0)
settext()方法接受string作为参数。你不能直接传递任何其他数据类型。要在textview中显示任何其他数据类型,您必须使用“+”运算符将其附加到字符串:
喜欢:[textview] .setText(“”+ integerValue);