After removing app:layout_behavior="@string/appbar_scrolling_view_behavior" unlink from top

Asked

Viewed 1,098 times

0

When I remove the app:layout_behavior="@string/appbar_scrolling_view_behavior" from my screen solves the problem of the position of the setError. However cause another, after doing this it is no longer aligned with the top.

Here is the start where I removing from my content happens the problem

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:weightSum="1"
app:layout_behavior="@string/appbar_scrolling_view_behavior"> <!-- Removendo essa linha -->
....

Another Activity

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".activity.CompletaCadastroActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.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" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_completa_cadastro" />

If anyone can help. Thank you!

1 answer

0


Solution in this post, in case only add a Linearlayout before Appbarlayout.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.