2017-10-09 20 views
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 슬라이드를 볼 수 있습니다

Here you can clearly see the white space that is present everywhere in the app.

. 나는 ActionBar에 문제가 있다고 생각한다. 0dp의 여백과 0dp의 여백을 추가하려고했지만 그 중 아무 것도 변경되지 않았습니다.

미리 감사드립니다.

답변

-1

내가 대신

<dimen name="myActionBar_height">48dp</dimen> 

android:layout_marginTop="@dimen/myActionBar_height" 

를 사용하여 내 조각에서

android:layout_marginTop="?attr/actionBarSize" 

를 사용하는 여분의 공간을 고정 된 것으로 나타났습니다. 그러나 나는 이것을 좋은 해결책으로 생각하지 않습니다.

문제는 여백 위쪽의 여분의 10dp 인 것으로 보입니다.