我正在开发一个应用程序,您可以在其中查看 BusStop 时间表。并且用户可以使用 ActionBar PullToRefresh (Library) 进行刷新。我的应用程序还启用了 KitKat 上的半透明状态栏。

现在,通常应与操作栏重叠的 ActionBar Overlay 现在向上移动。

我该如何解决?

此致!

最佳答案

我所做的是为下拉刷新布局创建一个自定义标题布局。我只是复制了原来的,添加了状态栏的高度(通常为 25dp)并添加了 25dp 的顶部填充。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="73dp"
    android:paddingTop="25dp" >

    <FrameLayout
        android:id="@id/ptr_content"
        android:layout_width="match_parent"
        android:layout_height="73dp" >

        <TextView
            android:id="@id/ptr_text"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:textAppearance="?android:attr/textAppearanceMedium" />
    </FrameLayout>

    <fr.castorflex.android.smoothprogressbar.SmoothProgressBar
        android:id="@id/ptr_progress"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/ptr_progress_bar_stroke_width" />

</RelativeLayout>

现在在设置 pull to refresh 布局时设置布局:
ActionBarPullToRefresh.from(getActivity()).listener(new OnRefreshListener() {

    @Override
    public void onRefreshStarted(View view) {
        refresh();
    }

}).headerLayout(R.layout.header).build()).setup(ptrLayout);

关于android - 操作栏 - PullToRefresh,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23575574/

10-10 08:23