We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
자주 쓰이는 버튼 Style을 themes.xml 파일에 지정해 놓았습니다
<androidx.appcompat.widget.AppCompatButton android:layout_width="match_parent" android:layout_height="60dp" android:background="@drawable/selector_btn_sign_in" android:text="@string/msg_store" android:textSize="18sp" android:textStyle="bold" android:textColor="@color/white" />
android:text
<androidx.appcompat.widget.AppCompatButton android:layout_width="match_parent" android:layout_height="60dp" android:text="@string/msg_store" style="@style/MyDailyButtonStyle" />
<style name="MyDailyButtonStyle" parent="Widget.AppCompat.Button"> <item name="android:textSize">18sp</item> <item name="android:textStyle">bold</item> <item name="android:textColor">@color/white</item> <item name="android:background">@drawable/selector_btn_sign_in</item> </style>
The text was updated successfully, but these errors were encountered:
관련 커밋 5da1f2f
Sorry, something went wrong.
No branches or pull requests
자주 쓰이는 버튼 Style을 themes.xml 파일에 지정해 놓았습니다
style 속성 사용 전
style 속성 사용 후
android:text
속성만 지정해주면됨Style 내용
The text was updated successfully, but these errors were encountered: