티스토리 뷰
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme">
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@+id/toolbar"
android:layout_height="?attr/actionBarSize"
android:elevation="6dp"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme">
<!-- 이곳에 Custom Layout을 추가해주면 됩니다 -->
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mAppBarLayout = findViewById(R.id.appbar);
Toolbar toolbar = mAppBarLayout.findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
이미지를 보시면 왼쪽에 margin이 보입니다. (이미지는 편의상 웹에서 가지고 왔습니다.)
아마 제 코드를 참고 하셔서 작성하셨으면 여러분도 동일하게 발생했을 것 같습니다.
그럼 이 정체 불명의 margin을 지워보도록 하겠습니다.
<android.support.v7.widget.Toolbar
xmlns:app="schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryColor"
android:contentInsetLeft="0dp"
android:contentInsetStart="0dp"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
android:contentInsetRight="0dp"
android:contentInsetEnd="0dp"
app:contentInsetRight="0dp"
app:contentInsetEnd="0dp" />
위에 inset부분만 모두 가져다 설정해주시기 바랍니다.
이렇게 해서 Inset을 모두 0으로 주게되면 정체 불명의 left margin을 없앨 수 있습니다.
'개발 > 안드로이드' 카테고리의 다른 글
[안드로이드 / android] UiAutomatorviewer Window에서 실행되지 않는 문제 (0) | 2018.07.17 |
---|---|
[안드로이드 / android] APK Version, App Version 설정 및 값 받아오기 (0) | 2018.07.16 |
[안드로이드 / android] compileSdkVersion vs minSdkVersion vs targetSdkVersion (0) | 2018.07.12 |
[안드로이드 / android] Code Style #2 (0) | 2018.07.10 |
[안드로이드 / android] Code Style #1 (0) | 2018.07.09 |