0
내 조각을 위해 컨테이너에 MainActivity를 사용합니다. MainActivitie의 XML은 다음 코드를 사용하여 도구 모음을 포함 그림에서 볼 수 있듯이 나는 액션 바 아래에이 원치 않는 여분의 공간이 내 모든 조각에 :안드로이드 - 원하지 않는 공간 아래 ActionBar
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/c_green"
android:id="@+id/toolbar"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:title="@string/app_name"
android:contentInsetLeft="10dp"
android:contentInsetStart="10dp"
app:contentInsetLeft="10dp"
android:layout_margin="0dp"
android:padding="0dp">
<ImageView
android:id="@+id/logo"
android:layout_width="100dp"
android:layout_height="35dp"
android:layout_gravity="left" />
</android.support.v7.widget.Toolbar>
문제는 다음과 같다. recyclerView에 당신이 공백 아래 CardViews 슬라이드를 볼 수 있습니다
. 나는 ActionBar에 문제가 있다고 생각한다. 0dp의 여백과 0dp의 여백을 추가하려고했지만 그 중 아무 것도 변경되지 않았습니다.미리 감사드립니다.