2021/01/19 - [안드로이드] - [안드로이드] DrawerLayout Navigaion 쉽게 만들어보기
2021/01/19 - [안드로이드] - [안드로이드]DrawerLayout Navigation 메뉴(Menu) 추가하기
2021/01/20 - [안드로이드] - [안드로이드]DrawerLayout Navigation Header 추가하기
2021/01/21 - [안드로이드] - [안드로이드] DrawerLayout Navigation 호출하는 메뉴버튼 생성하기
이번 시간에는 안드로이드 스튜디오에서 지원해주는 기본 색상을 가져오는 방법에 대해 알아보겠습니다.
물론 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. 실행화면
2021/01/19 - [안드로이드] - [안드로이드] DrawerLayout Navigaion 쉽게 만들어보기
2021/01/19 - [안드로이드] - [안드로이드]DrawerLayout Navigation 메뉴(Menu) 추가하기
2021/01/20 - [안드로이드] - [안드로이드]DrawerLayout Navigation Header 추가하기
2021/01/21 - [안드로이드] - [안드로이드] DrawerLayout Navigation 호출하는 메뉴버튼 생성하기
공감 댓글 환영합니다.
[안드로이드] 전화걸기(Intent.ACTION_VIEW) 기능 만들어보기 (0) | 2021.02.02 |
---|---|
[안드로이드] 안드로이드 스튜디오 기본 색상 코드에서 가져오는 방법 (0) | 2021.01.23 |
[안드로이드] DrawerLayout Navigation 호출하는 메뉴버튼 생성하기 (0) | 2021.01.21 |
[안드로이드] DrawerLayout Navigation Header 추가하기 (2) | 2021.01.20 |
[안드로이드] DrawerLayout Navigation 메뉴(Menu) 추가하기 (0) | 2021.01.19 |
댓글 영역