- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经完成了我的第一个应用程序的部分版本。我只想在 Android 设备上运行它,看看它是否工作正常。我的代码没有错误。我收到了 FATAL Exception: main to go away。
但是,该功能并未按我想要的方式工作。我不知道问题出在哪里。当我按下按钮时,应用程序崩溃。
MainActivity.java
package com.example.crickattemp;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
EditText e1;
TextView t1;
Button b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
e1=(EditText)findViewById(R.id.data);
t1=(TextView) findViewById(R.id.result);
b1=(Button)findViewById(R.id.btn1);
b1.setOnClickListener(new View.OnClickListener() {
@SuppressLint("SetTextI18n")
@Override
public void onClick(View view) {
Float f1=Float.parseFloat(e1.toString());
Float f2=f1+25;
t1.setText(Float.toString(f2));
}
});
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:id="@+id/data"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/chirps_per_minute"
android:inputType="number"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.454"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.389"
android:importantForAutofill="no" />
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calculate"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.453"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.531" />
<TextView
android:id="@+id/result"
android:layout_width="214dp"
android:layout_height="37dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.456"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.673" />
</androidx.constraintlayout.widget.ConstraintLayout>
LogCat 输出:
2020-03-11 12:34:38.067 16113-16113/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2020-03-11 12:34:38.070 16113-16113/? E/Zygote: accessInfo : 1
2020-03-11 12:34:38.091 16113-16113/? I/ple.crickattem: Late-enabling -Xcheck:jni
2020-03-11 12:34:38.808 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden method Landroid/graphics/drawable/Drawable;->getOpticalInsets()Landroid/graphics/Insets; (light greylist, linking)
2020-03-11 12:34:38.808 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden field Landroid/graphics/Insets;->left:I (light greylist, linking)
2020-03-11 12:34:38.808 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden field Landroid/graphics/Insets;->right:I (light greylist, linking)
2020-03-11 12:34:38.808 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden field Landroid/graphics/Insets;->top:I (light greylist, linking)
2020-03-11 12:34:38.808 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden field Landroid/graphics/Insets;->bottom:I (light greylist, linking)
2020-03-11 12:34:38.853 16113-16113/com.example.crickattemp I/DecorView: mWindow.mActivityCurrentConfig is null.
2020-03-11 12:34:38.865 16113-16113/com.example.crickattemp I/DecorView: createDecorCaptionView >> DecorView@923ef8a[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
2020-03-11 12:34:39.177 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (light greylist, reflection)
2020-03-11 12:34:39.181 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (light greylist, reflection)
2020-03-11 12:34:39.232 16113-16113/com.example.crickattemp W/ple.crickattem: Accessing hidden method Landroid/widget/TextView;->getTextDirectionHeuristic()Landroid/text/TextDirectionHeuristic; (light greylist, linking)
2020-03-11 12:34:39.540 16113-16113/com.example.crickattemp D/OpenGLRenderer: Skia GL Pipeline
2020-03-11 12:34:39.554 16113-16113/com.example.crickattemp D/EmergencyMode: [EmergencyManager] android createPackageContext successful
2020-03-11 12:34:39.583 16113-16113/com.example.crickattemp D/InputTransport: Input channel constructed: fd=62
2020-03-11 12:34:39.584 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: setView = DecorView@923ef8a[MainActivity] TM=true MM=false
2020-03-11 12:34:39.740 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: Relayout returned: old=[0,0][720,1480] new=[0,0][720,1480] result=0x7 surface={true 3577739264} changed=true
2020-03-11 12:34:39.763 16113-16259/com.example.crickattemp I/ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
2020-03-11 12:34:39.764 16113-16259/com.example.crickattemp I/ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
2020-03-11 12:34:39.764 16113-16259/com.example.crickattemp I/OpenGLRenderer: Initialized EGL, version 1.4
2020-03-11 12:34:39.764 16113-16259/com.example.crickattemp D/OpenGLRenderer: Swap behavior 2
2020-03-11 12:34:39.823 16113-16259/com.example.crickattemp D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000, [720x1480]-format:1
2020-03-11 12:34:39.823 16113-16259/com.example.crickattemp D/OpenGLRenderer: eglCreateWindowSurface = 0xe85fb9a0, 0xd53ff808
2020-03-11 12:34:40.077 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: MSG_RESIZED: frame=[0,0][720,1480] ci=[0,48][0,96] vi=[0,48][0,96] or=1
2020-03-11 12:34:40.078 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
2020-03-11 12:34:40.102 16113-16113/com.example.crickattemp D/InputMethodManager: prepareNavigationBarInfo() DecorView@923ef8a[MainActivity]
2020-03-11 12:34:40.102 16113-16113/com.example.crickattemp D/InputMethodManager: getNavigationBarColor() -855310
2020-03-11 12:34:40.122 16113-16113/com.example.crickattemp D/InputMethodManager: prepareNavigationBarInfo() DecorView@923ef8a[MainActivity]
2020-03-11 12:34:40.122 16113-16113/com.example.crickattemp D/InputMethodManager: getNavigationBarColor() -855310
2020-03-11 12:34:40.124 16113-16113/com.example.crickattemp V/InputMethodManager: Starting input: tba=com.example.crickattemp ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2020-03-11 12:34:40.124 16113-16113/com.example.crickattemp D/InputMethodManager: startInputInner - Id : 0
2020-03-11 12:34:40.124 16113-16113/com.example.crickattemp I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2020-03-11 12:34:40.131 16113-16134/com.example.crickattemp D/InputTransport: Input channel constructed: fd=71
2020-03-11 12:34:40.137 16113-16113/com.example.crickattemp D/InputMethodManager: prepareNavigationBarInfo() DecorView@923ef8a[MainActivity]
2020-03-11 12:34:40.138 16113-16113/com.example.crickattemp D/InputMethodManager: getNavigationBarColor() -855310
2020-03-11 12:34:40.138 16113-16113/com.example.crickattemp V/InputMethodManager: Starting input: tba=com.example.crickattemp ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2020-03-11 12:34:40.138 16113-16113/com.example.crickattemp D/InputMethodManager: startInputInner - Id : 0
2020-03-11 12:34:41.308 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: ViewPostIme pointer 0
2020-03-11 12:34:41.400 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: ViewPostIme pointer 1
2020-03-11 12:34:41.429 16113-16113/com.example.crickattemp D/InputMethodManager: prepareNavigationBarInfo() DecorView@923ef8a[MainActivity]
2020-03-11 12:34:41.429 16113-16113/com.example.crickattemp D/InputMethodManager: getNavigationBarColor() -855310
2020-03-11 12:34:41.429 16113-16113/com.example.crickattemp V/InputMethodManager: Starting input: tba=com.example.crickattemp ic=com.android.internal.widget.EditableInputConnection@472126 mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2020-03-11 12:34:41.429 16113-16113/com.example.crickattemp D/InputMethodManager: startInputInner - Id : 0
2020-03-11 12:34:41.437 16113-16113/com.example.crickattemp I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2020-03-11 12:34:41.441 16113-16113/com.example.crickattemp D/InputTransport: Input channel constructed: fd=74
2020-03-11 12:34:41.441 16113-16113/com.example.crickattemp D/InputTransport: Input channel destroyed: fd=71
2020-03-11 12:34:41.442 16113-16113/com.example.crickattemp D/InputMethodManager: SSI - flag : 0 Pid : 16113 view : com.example.crickattemp
2020-03-11 12:34:41.442 16113-16113/com.example.crickattemp D/InputMethodManager: prepareNavigationBarInfo() DecorView@923ef8a[MainActivity]
2020-03-11 12:34:41.442 16113-16113/com.example.crickattemp D/InputMethodManager: getNavigationBarColor() -855310
2020-03-11 12:34:41.451 16113-16113/com.example.crickattemp D/Editor: waiting for the right moment
2020-03-11 12:34:41.657 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: MSG_RESIZED: frame=[0,0][720,1480] ci=[0,48][0,96] vi=[0,48][0,616] or=1
2020-03-11 12:34:43.265 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: ViewPostIme pointer 0
2020-03-11 12:34:43.811 16113-16113/com.example.crickattemp D/ViewRootImpl@60a44a2[MainActivity]: ViewPostIme pointer 1
2020-03-11 12:34:43.823 16113-16113/com.example.crickattemp D/AndroidRuntime: Shutting down VM
2020-03-11 12:34:43.834 16113-16113/com.example.crickattemp E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.crickattemp, PID: 16113
java.lang.NumberFormatException: For input string: "androidx.appcompat.widget.AppCompatEditText{7ec578b VFED..CL. .F...... 136,441-556,532 #7f07004e app:id/data}"
at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:2043)
at sun.misc.FloatingDecimal.parseFloat(FloatingDecimal.java:122)
at java.lang.Float.parseFloat(Float.java:451)
at com.example.crickattemp.MainActivity$1.onClick(MainActivity.java:28)
at android.view.View.performClick(View.java:7339)
at android.widget.TextView.performClick(TextView.java:14279)
at android.view.View.performClickInternal(View.java:7305)
at android.view.View.access$3200(View.java:846)
at android.view.View$PerformClick.run(View.java:27787)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7081)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:494)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:965)
2020-03-11 12:34:43.868 16113-16113/com.example.crickattemp I/Process: Sending signal. PID: 16113 SIG: 9
P.S.:我是 Android 开发的初学者。这是我第一次在 stackoverflow 上发帖,所以如果我犯了任何菜鸟错误,请原谅我。
最佳答案
您正在对 EditText
本身而不是其文本调用 toString()
:
Float.parseFloat(e1.toString());
您需要调用getText()
:
Float.parseFloat(e1.getText().toString());
我能够从这个错误中弄清楚这一点:
java.lang.NumberFormatException: For input string: "androidx.appcompat.widget.AppCompatEditText{7ec578b VFED..CL. .F...... 136,441-556,532 #7f07004e app:id/data}"
关于java - NumberFormatException : For input string: "androidx. appcompat.widget.AppCompatEditText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60631425/
如果您想使用 String.Concat() 连接 5 个或更多字符串,则它会使用 Concat(String[])。 为什么不一直使用 Concat(String[]) 而不再需要 Concat(S
今天在使用 String 时,我遇到了一种我以前不知道的行为。我无法理解内部发生的事情。 public String returnVal(){ return "5";
似乎在我所看到的任何地方,都有一些过时的版本,这些版本不再起作用。 我的问题似乎很简单。我有一个Java类,它映射到derby数据库。我正在使用注释,并且已经成功地在数据库中创建了所有其他表,但是在这
一、string::size_type() 在C++标准库类型 string ,在调用size函数求解string 对象时,返回值为size_type类型,一种类似于unsigned类型的int 数据
我正在尝试将数据保存到我的 plist 文件中,其中包含字符串数组的定义。我的plist - enter image description here 我将数据写入 plist 的代码是 -- let
我有一个带有键/值对的 JavaScript 对象,其中值是字符串数组: var errors = { "Message": ["Error #1", "Error #2"], "Em
例如,为了使用相同的函数迭代 List 和 List> ,我可以编写如下内容: import java.util.*; public class Test{ public static voi
第一个Dictionary就像 Dictionary ParentDict = new Dictionary(); ParentDict.Add("A_1", "1")
这是我的 jsp 文件: 我遇到了错误 The method replace(String, String, String) in the type Functions is not appl
我需要一些帮助。我有一个方法应该输出一个包含列表内容的 txt 文件(每行中的每个项目)。列表项是字符串数组。问题是,当我调用 string.Join 时,它返回文字字符串 "System.Strin
一位同事告诉我,使用以下方法: string url = "SomeURL"; string ext = "SomeExt"; string sub = "SomeSub"; string s
给定类: public class CategoryValuePair { String category; String value; } 还有一个方法: public
我正在尝试合并 Stream>>对象与所有 Streams 中的键一起映射到单个映射中. 例如, final Map someObject; final List>> list = someObjec
在这里使用 IDictionary 的值(value)是什么? 最佳答案 使用接口(interface)的值(value)始终相同:切换到另一个后端实现时,您不必更改客户端代码。 请考虑稍后分析您的代
我可以知道这两个字典声明之间的区别吗? var places = [String: String]() var places = [Dictionary()] 为什么当我尝试以这种方式附加声明时,只有
在 .NET 4.0 及更高版本中存在 string.IsNullOrWhiteSpace(string) 时,在检查字符串时使用 string.IsNullOrEmpty(string) 是否被视为
这个名字背后的原因是什么? SS64在 PowerShell 中解释此处的字符串如下: A here string is a single-quoted or double-quoted string
我打算离开 this 文章,尝试编写一个接受字符串和 &str 的函数,但我遇到了问题。我有以下功能: pub fn new(t_num: S) -> BigNum where S: Into {
我有一个结构为 [String: [String: String]] 的多维数组。我可以使用 for 循环到达 [String: String] 位,但我不知道如何访问主键(这个位 [String:
我正在尝试使用 sarama(管理员模式)创建主题。没有 ConfigEntries 工作正常。但我需要定义一些配置。 我设置了主题配置(这里发生了错误): tConfigs := map[s
我是一名优秀的程序员,十分优秀!