달나라 노트

Android Studio - Button android:backgroundTint (버튼 색상 변경하기) & android:textColor (글자 색상 변경하기) 본문

Android

Android Studio - Button android:backgroundTint (버튼 색상 변경하기) & android:textColor (글자 색상 변경하기)

CosmosProject 2021. 3. 22. 23:46
728x90
반응형

 

 

 

 

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:backgroundTint="#676767"
        android:text="Button"
        android:textColor="#8CB3FF"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

위 코드의 android:backgroundTint="#676767"를 보면 button의 배경 색을 설정하고있습니다.

 

또한 android:textColor 이 부분은 button에 적힌 글자의 색상을 정하고 있습니다.

 

 

 

 

 

 

 

 

 

 

 

 

728x90
반응형
Comments