作者bemaduro (superhotblood)
看板AndroidDev
标题[问题] 新手提问
时间Wed Jul 4 15:01:58 2018
大家好小弟新手 目前透过Udemy自学 Android
目前在做一个 Counter 的小程式 程式码如下
有几个疑问想要提问
fun countMe (view: View) {
括号内的(view: View) 的意义是??
不宣告的话app 又会crash
// Get the text view.
val showCountTextView = number
// Get the value of the text view.
val countString = showCountTextView.text.toString()
//Convert value to a number and increment it
var count: Int = Integer.parseInt(countString)
count++
// Display the new value in the text view.
showCountTextView.text = count.toString()
.text 的意思是宣告showCountTextView 是字串吗?
}
fun reSet (view: View) {
// Get the text view.
val showCountTextView = number
//Convert value to 0
val zeroing = 0
// Display the new value in the text view.
showCountTextView.text = zeroing.toString()
}
这个功能的目的是要让数字归零,已修改让他更简洁。有更直接的做法吗?
例如让number 这个TextView 直接等於零?
谢谢大家!
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 121.254.76.49
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/AndroidDev/M.1530687721.A.3F1.html
1F:→ kobe8112: fun 函式名称(参数名称:参数型态) 07/04 16:36
2F:推 aids61517: 1. countMe用在哪里?感觉像是在xml设定onClick 07/04 16:39
3F:→ aids61517: 如果是的话那个view代表被按下的View 07/04 16:39
4F:→ kobe8112: showCountTextView是一个View(TextView),text是其属性 07/04 16:40
5F:→ aids61517: 2. .text 的意思是宣告showCountTextView 是字串吗? 07/04 16:40
6F:→ kobe8112: 单纯想设成0直接 showCountTextView.text="0" 即可 07/04 16:41
7F:→ aids61517: 答案为No,他原本是showCountTextView.setText(xxx) 07/04 16:41
8F:→ aids61517: 纯新手建议先从Java上手 07/04 16:41
9F:→ paul7322000: 看起来两个fun都是在xml宣告onclick的 所以view不能 07/04 21:26
10F:→ paul7322000: 少,少了在oncreat的时候就会crash了 07/04 21:26
11F:→ james732: 你对Kotlin的基本概念太欠缺了,先打基础吧 07/05 01:24
谢谢以上大大回覆,这两个功能都是在XML 直接设定onClick没错。
因为一开始学Kotlin,但书上的东西对我来说太虚幻了。
所以我想透过做中学,才会遇到这麽基础的问题却想不出来。
接下来会恶补一下,基础的部分。再次感谢大大们的回覆。得到很好的解答。
※ 编辑: bemaduro (121.254.76.49), 07/05/2018 11:16:12
12F:→ y3k: 你有写过Java吗...? 这些问题看起来都是连Java都不会在问的@@ 07/05 12:16
13F:推 aids61517: 建议纯新手先从Java开始,至少做个半年以上再考虑用 07/05 13:00
14F:→ aids61517: Kotlin,不然什麽时候用.text setText之类的问题会让你 07/05 13:00
15F:→ aids61517: 学习方向失焦 07/05 13:00
16F:→ bemaduro: 谢谢两位前辈回应,那我接下来会去Udemy找个Java的课程 07/05 15:25