반응형
AppBarLayout에서 타이틀을 수정해서 사용하려는 경우
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<TextView
android:id="@+id/tvLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="로고" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<TextView>에 아래의 파라미터를 추가하면 다음과 같이 우측으로 이동하게 됩니다. (예시를 위해 TextView를 했을 뿐, ImageView 등도 다음과 같이 우측으로 이동하게 됩니다.)
android:layout_gravity="end"
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<TextView
android:id="@+id/tvLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="로고" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
반응형
'개발 창고 > Android' 카테고리의 다른 글
[Android] string.xml 특수문자 처리 (0) | 2020.11.24 |
---|---|
[Android] More than one file was found with OS independent path 'META-INF/DEPENDENCIES'. (0) | 2020.11.20 |
[Android] ImageView 이미지 크기에 View 크기 맞추는 법 (0) | 2020.10.28 |
[Android] 알림 그룹만들기 (0) | 2020.09.28 |
[Android] net::ERR_CACHE_MISS에 대한 해결방법 (0) | 2020.09.24 |