HAYU's Blog

求大佬帶我飛

0%

  • 先在 oncreate() 中 setContentView(R.layout.activity_main) 掛好 GUI 後
  • 透過 ID 查找 val Gtext: TextView = findViewById(R.id.GreetingView)
    • 如果要設定成 class 的變數需要加上 lateinit private lateinit var Gtext: TextView
  • 更改 Gtext.text 就能更改到 GUI

推薦閱讀: 使用 Kotlin 按下 Button 處發函式 [Android Studio with Kotlin]
參考資料: Day 8 Android in Kotlin: Button 點擊監聽器

前情提要: Git and Github Repo (連結待補)

  • 開啟 Android-Studio 左下角 git
  • create repo
  • 或是照著一般方式弄
    • .gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment