appBarLayout 在启动 activity 时立即关闭
appBarLayout is closed immedaitely when starting the activity
我是 android 的新人。我的一个活动有一个 appbarLayout,问题是开始时 activity app barLayout 立即关闭,我必须向下滚动才能再次打开它。我还将 app:expaned 设置为 true,但它对我不起作用。
我的代码:
<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>
when start the activity
after scroll sown the appBarLyout
我有同样的问题。问题是 AppBarLayout 下的东西(在我的应用程序片段中)将 AppBarLayout 向上推并关闭它,因为它的内容比可见的 space 填充得更多。但是我没有找到防止这种情况的解决方案...
当我隐藏 Fragment 的内容时,AppbarLayout 保持打开状态。
android:visibility="invisible"
更新:
我找到了解决方案:
您视图中的一个元素获得焦点(可能是 EditText)。
为了防止我的应用程序崩溃,我不得不将此语句放在 EditText
的 XML 中
android:focusable="false"
如果你想使用EditText,在onCreate中使用:
EditText text = findViewById(R.id.textEdit);
text.setFocusable(true);
更新 2:
此外,您可能需要恢复可编辑性:
text.setFocusableInTouchMode(true);
我是 android 的新人。我的一个活动有一个 appbarLayout,问题是开始时 activity app barLayout 立即关闭,我必须向下滚动才能再次打开它。我还将 app:expaned 设置为 true,但它对我不起作用。 我的代码:
<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>
when start the activity
after scroll sown the appBarLyout
我有同样的问题。问题是 AppBarLayout 下的东西(在我的应用程序片段中)将 AppBarLayout 向上推并关闭它,因为它的内容比可见的 space 填充得更多。但是我没有找到防止这种情况的解决方案...
当我隐藏 Fragment 的内容时,AppbarLayout 保持打开状态。
android:visibility="invisible"
更新:
我找到了解决方案:
您视图中的一个元素获得焦点(可能是 EditText)。
为了防止我的应用程序崩溃,我不得不将此语句放在 EditText
的 XML 中android:focusable="false"
如果你想使用EditText,在onCreate中使用:
EditText text = findViewById(R.id.textEdit);
text.setFocusable(true);
更新 2:
此外,您可能需要恢复可编辑性:
text.setFocusableInTouchMode(true);