我使用SwipeRefreshLayout进行了一次子活动。 当使用后退按钮(调用onBackpressed())时,我希望活动完成并打开父活动。
预期: 当我使用滑动刷新并让应用程序加载一段时间(带走真正的网络,因此加载过程需要更长时间),然后按下后退按钮以便调用onBackPressed,一切都按预期工作。 子活动关闭,父活动打开。 这是正常的行为。
可疑行为: 当我这样做,但快速按下后退按钮,在通过一次向下滑动激活刷新后不久,加载动画停止,整个视图消失,似乎重新创建。
我的问题: 有没有人有同样的问题?这是正常的吗? 我理解错了吗?
儿童活动:
public class ContactsActivity extends AppCompatActivity {
@BindView(R.id.toolbar) Toolbar toolbar;
@BindView(R.id.contacts_swipe_container) SwipeRefreshLayout refreshContainer;
@BindView(R.id.contacts_recycler_view) RecyclerView recyclerView;
private ContactsRecyclerViewAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.contacts);
ButterKnife.bind(this);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
refreshContainer.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
//commented so the refresh process holds on
//fetchUpdates(0);
}
});
// Configure the refreshing colors
refreshContainer.setColorSchemeResources(
android.R.color.holo_blue_light,
android.R.color.holo_green_light,
android.R.color.holo_orange_light,
android.R.color.holo_red_light);
// Set the adapter
adapter = new ContactsRecyclerViewAdapter(contacts);
recyclerView.setAdapter(adapter);
}
XML:
<?xml version="1.0" encoding="utf-8"?>
<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="com.devte.eventr.controller.contacts.ContactsActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/contacts_content" />
</android.support.design.widget.CoordinatorLayout>
包含的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:id="@+id/content_contacts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.devte.eventr.controller.contacts.ContactsActivity"
tools:showIn="@layout/contacts">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/contacts_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
app:layoutManager="LinearLayoutManager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/contacts_item"
android:id="@+id/contacts_recycler_view"/>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>