且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用意图将整数和浮点值从一个活动传递到另一个活动?

更新时间:2023-11-27 23:00:46

消息很清楚,你不能把一种类型转换成完全不同的东西。如果变量是 float 类型,则必须将其作为 float 传递。请参阅 http://developer.android.com/reference/ android / content / Intent.html#putExtra(java.lang.String,float) [ ^ ]。
The message is quite clear, you cannot cast one type to something totally different. If the variable is a float type then you must pass it as a float. See http://developer.android.com/reference/android/content/Intent.html#putExtra(java.lang.String, float)[^].