2
我是Android新手。我的一個活動有一個appbarLayout,問題是當開始該活動時,應用程序barLayout立即關閉,我必須向下滾動才能再次打開它。我也設置了應用程序:展開爲真,但它不適合我。 我的代碼:當開始活動時,appBarLayout被immedaitely關閉
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/mygray">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/appbar_h"
app:expanded="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="true"
android:foregroundGravity="bottom|right"
android:foregroundTintMode="add"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:expandedTitleTextAppearance="@style/CustomToolbar">
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/graph"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar"
android:background="@color/lime300"
app:layout_collapseMode="parallax"></com.github.mikephil.charting.charts.LineChart>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="@dimen/elevation"
app:layout_collapseMode="pin"
app:theme="@style/Toolbar">
</android.support.v7.widget.Toolbar>
<TextView
android:id="@+id/Mn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginBottom="70dp"
android:rotation="-90"
android:text="بار محوری (KN)"
android:textSize="@dimen/textsize_checkBox"
android:textColor="@color/gray_heavy"/>
<TextView
android:id="@+id/Pn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin4"
android:layout_marginStart="@dimen/margin4"
android:layout_gravity="bottom"
android:layout_marginBottom="@dimen/margin_columnAnalysis"
android:text="لنگر خمشی (KN.m)"
android:textSize="@dimen/textsize_checkBox"
android:textColor="@color/gray_heavy"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/nested_scroll_view"/>
</android.support.design.widget.CoordinatorLayout>
after scroll sown the appBarLyout
有沒有解決方法? –