๐งฉ์๋๋ก์ด๋/๋ฒ๊ทธ ํด๊ฒฐ
[Android/Kotlin] ํธ์ ์๋ฆผ์ด ํ์ ์ผ๋ก ๋จ์ง ์์ ๋ Notification won't show up as a heads up notification
https://stackoverflow.com/questions/71482843/android-notification-wont-show-up-as-a-heads-up-notification Android notification won't show up as a heads up notification I am using the following code to show my notification: NotificationCompat.Builder builder = new NotificationCompat.Builder(context, context.getString(R.string. stackoverflow.com PRIORITY_HIGH, IMPORTANCE_HIGH๋ฅผ ์ ์ฉํด๋ ํ์ ์ด ๋จ์ง ์์์ ์ฝ์ง์ ..
[Android/Kotlin] Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE ...
์๋๋ก์ด๋ 12๋ก ๋์ด์ค๋ฉด์ ์๊ธด ๋ฌธ์ . ํด๊ฒฐ ๋ฐฉ๋ฒ 1 dependencies { implementation 'androidx.work:work-runtime-ktx:2.7.1' ... } ํด๊ฒฐ ๋ฐฉ๋ฒ 2 val pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_MUTABLE); PendingIntent๋ฅผ ์ฌ์ฉํ๋ ๊ณณ์ PendingIntent.FLAG๋ฅผ ์ค์ ํด์ค๋ค. Android 12 ์ดํ ๋ถํฐ ๋ฐ๋์ ์ค์ ํด์ผํ๋ค. ์ ๋ 1๋ฒ์ ๋ฐฉ๋ฒ์ด ์๋์ 2๋ฒ ๋ฐฉ๋ฒ์ผ๋ก ํด๊ฒฐํ์ต๋๋ค...!
Android Studio : SQLiteDatabase insert()๊ฐ ์ ์์ ์ผ๋ก ์๋ํ์ง ์์๋, SQLException ๋ฐ์ ์ค๋ฅ, insertOrThread ์ฌ์ฉ๋ฒ
๋ฐ๋ก ๋ณธ๋ก ๋ถํฐ ๋ค์ด๊ฐ์. ์๋๋ก์ด๋ ์คํ๋์ค ์๋จ์ View -> Tool Windows -> Device File Explorer ํด๋ฆญ data -> data ํด๋ฆญ ์ค๋ฅ๊ฐ ๋ฐ์ํ ํจํค์ง ์ด๋ฆ์ ์ฐพ์ ํ databases ํด๋์ ์๋ ๋ ํ์ผ์ ์ญ์ ํ ๋ค์ ์คํํ๋ฉด ๋๋ค. ๋ฐ์ํ ์ด์ 1. ์ฒ์์ ๋ฐ์ดํฐ๋ฒ ์ด์ค ํ ์ด๋ธ์ ์๋ชป ์์ฑํจ (,)๋ฅผ ๋นผ๋จน์.. val create = "create table memo (" + "no integer primary key" + "datetime integer "+ "mistake text "+ "result text "+ "feedback text" + ")" 2. ๋ค์ ํ ์ด๋ธ์ ์ ์์ ์ผ๋ก ์์ val create = "create table memo (" + "no..
import kotlinx.android.synthetic.main.activity_main.* ์ด ์๋ ๊ฒฝ์ฐ ํด๊ฒฐ ๋ฐฉ๋ฒ
๋ฐ๋ก ํด๊ฒฐ๋ฐฉ๋ฒ ๋ถํฐ ์์๋ณด์. 1. bulid.gradle์ ๋ค์ด๊ฐ์ 2. kotlin-android-extensions ํ๋ฌ๊ทธ์ธ ์ถ๊ฐ 3. ์ฌ์ง์ ํ์๋ Sync Now ํด๋ฆญ ์ ์ ๊ธฐ๋ค๋ฆฌ๋ฉด kotlinx.android.systhetic.main.activity_main.* ์ ์ฌ์ฉํ ์ ์๊ฒ ๋๋ค. ์ ์๋๋๊ฐ? ์๋๋ก์ด๋ ์คํ๋์ค๊ฐ 4.1๋ก ์ ๋ฐ์ดํธ ๋๋ฉด์ kotlin-android-extensions ํ๋ฌ๊ทธ ์ธ์ด ๋น ์ก๊ธฐ ๋๋ฌธ...