상세 컨텐츠

본문 제목

[안드로이드] 안드로이드 스튜디오 기본 색상 가져오는 방법

안드로이드

by aries574 2021. 1. 22. 18:53

본문


이번 시간에는 안드로이드 스튜디오에서 지원해주는 기본 색상을 가져오는 방법에 대해 알아보겠습니다.

물론 RGB색상표를 통해서 색상을 가져와도 되지만, 기본으로 지원해주는 색상을 쉽게 갖다 써도 되지 않을까 

싶어서 적게 되었습니다.


1. 메인화면(activity_main.xml)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_green_light"
android:textSize="20sp"
android:text="holo_green_light"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_green_dark"
android:textSize="20sp"
android:text="holo_green_dark"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_blue_light"
android:textSize="20sp"
android:text="holo_blue_light"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_blue_bright"
android:textSize="20sp"
android:text="holo_blue_bright"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_blue_dark"
android:textSize="20sp"
android:text="holo_blue_dark"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_orange_light"
android:textSize="20sp"
android:text="holo_orange_light"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_orange_dark"
android:textSize="20sp"
android:text="holo_orange_dark"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_red_light"
android:textSize="20sp"
android:text="holo_red_light"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_red_dark"
android:textSize="20sp"
android:text="holo_red_dark"
android:layout_marginBottom="15dp"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@android:color/holo_purple"
android:textSize="20sp"
android:text="holo_purple"
android:layout_marginBottom="15dp"
/>

</LinearLayout>


2. 실행화면




공감 댓글 환영합니다.

반응형

관련글 더보기

댓글 영역