我有一个Activity A和Activity B。在他们的布局中,他们都有一个工具栏,但 Activity BEditText
在它的工具栏下方有一个:
活动 B:
<android.support.design.widget.CoordinatorLayout
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="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/activity_AppBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/view_toolbar"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="vertical">
<android.support.v7.widget.AppCompatEditText
...
android:hint="@string/hint"
android:textColor="@color/colorPrimary"
android:textColorHint="@color/hint"
android:textCursorDrawable="@drawable/customCursor"/>
</LinearLayout>
</LinearLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
... <!--the remaining of the layout-->
</android.support.design.widget.CoordinatorLayout>
活动一:
<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="match_parent"
android:orientation="vertical">
<include layout="@layout/view_toolbar"/>
... <!--the remaining of the layout-->
</LinearLayout>
当我在没有过渡动画的情况下启动Activity B时,EditText 会显示它的提示并且光标会闪烁。如果我使用过渡启动Activity B,则 EditText 不会显示提示或光标,直到我单击它。
过渡代码:
if (mUseCompatAnimation) {
ViewCompat.setTransitionName(findViewById(R.id.activity_AppBarLayout), VIEW_FOR_TRANSITION);
}
VIEW_FOR_TRANSITION =活动 A工具栏
我试过以编程方式请求焦点,但没有奏效。
我错过了什么或者这可能是一个错误?
谢谢。