Skip to content

[DOCS] 자주 쓰이는 버튼 Style 지정 #32

@4z7l

Description

@4z7l

image

자주 쓰이는 버튼 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

No one assigned

    Labels

    documentationImprovements or additions to documentation

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions