728x90 반응형 분류 전체보기156 [코틀린] 토스트 메시지 사용 에러 None of the following functions can be called with the arguments supplied 발생시 Toast.makeText(this, "인터넷 연결이 필요합니다.", Toast.LENGTH_SHORT).show() >> Toast.makeText(this@MainActivity, "인터넷 연결이 필요합니다.", Toast.LENGTH_SHORT).show() 2020. 12. 26. 개인정보 처리방침 보호되어 있는 글 입니다. 2020. 12. 20. [코틀린] 스위치 (when) when(rnd) { 0 -> view.setBackgroundResource(R.drawable.rounding_title) 1 -> view.setBackgroundResource(R.drawable.rounding_content) 2 -> view.setBackgroundResource(R.drawable.rounding_blue) 3 -> view.setBackgroundResource(R.drawable.rounding_purple) 4 -> view.setBackgroundResource(R.drawable.rounding_yellow) } 2020. 12. 12. [코틀린] 데이터베이스 헬퍼 class DatabaseHelper(context: Context) : SQLiteOpenHelper(context, "notepad_kot.db", null, 1) { override fun onCreate(db: SQLiteDatabase?) { val sql = ("create table if not exists noteData(" + "_id integer PRIMARY KEY autoincrement," + "title text," + "content text," + "time text)") // !!는 null이 아님을 명시 db!!.execSQL(sql) } override fun onUpgrade(db: SQLiteDatabase?, oldVersion: Int, newVersion: I.. 2020. 12. 11. 이전 1 2 3 4 5 6 7 8 ··· 39 다음 728x90 반응형