개발일기

23.08.16 부트캠프 37일차 TIL 버튼 위치이동 다크테마

빛나는맛과탕탕 2023. 8. 16. 22:04
반응형

 

 

<item name="android:textColor">@color/white</item>

 

다크모드 글씨 검은색에서 흰색으로 겨우 한개 수정하는데 성공하였는데 그림파일이 문제다.

 

    val btn_save = findViewById<Button>(R.id.btn_save)

        btn_save.setOnClickListener{
            Toast.makeText(this, "저장", Toast.LENGTH_SHORT).show()

            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES) // 다크모드 활성화
        }
    }
    
    
     <Button
                android:id="@+id/btn_save"
                android:layout_marginTop="10dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="end" // 버튼 위치 이동 
                android:text="저장"
                />

 

 

 

 

반응형