-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
자주 쓰이는 버튼 Style을 themes.xml 파일에 지정해 놓았습니다
style 속성 사용 전
- 일일이 모든 속성을 지정해 주어야함
<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" />style 속성 사용 후
android:text속성만 지정해주면됨
<androidx.appcompat.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="@string/msg_store"
style="@style/MyDailyButtonStyle" />Style 내용
<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>Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
