- 배경색을 반투명 회색(#CC333333)으로 변경하여 라이트/다크 모두 가독성 확보 - 텍스트 색상을 흰색(@android:color/white)으로 변경 - showCustomToast() 함수 개선 Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
21 lines
685 B
XML
21 lines
685 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/bg_custom_toast"
|
|
android:paddingHorizontal="20dp"
|
|
android:paddingVertical="12dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/toastText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="14sp"
|
|
android:textColor="@android:color/white"
|
|
android:maxLines="2"
|
|
android:ellipsize="end" />
|
|
|
|
</LinearLayout>
|