728x90
반응형
SMALL
layout xml 파일 생성
layout 폴더에 xml 파일을 하나 생성해 준다.
<androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/purple_200">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="left|center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_baseline_toys_24" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="My Tool bar"
android:textColor="@color/black"
android:textSize="20sp"
android:textStyle="bold" />
</LinearLayout>
</androidx.appcompat.widget.Toolbar>
include 설정
<include
layout="@layout/tool_bar"/>
설정 완료
728x90
반응형
LIST
'Android' 카테고리의 다른 글
[안드로이드/JAVA] Toast Message 띄우기 (화면 하단 작은 메세지창), SnackBar(Material Design) (0) | 2022.02.25 |
---|---|
[안드로이드/JAVA] AlertDialog 메세지창 띄우기 (0) | 2022.02.24 |
[안드로이드] AppBar 앱바 없애기 / 상태바 색 변경하기 (0) | 2022.02.23 |
[안드로이드/JAVA] Intent 유형 - 명시적/암시적 (0) | 2022.02.20 |
[안드로이드/JAVA] Intent(인텐트) 값 전달하기 (0) | 2022.02.20 |