android – ActionBar – PullToRefresh

android – ActionBar – PullToRefresh,第1张

概述我正在开发一个应用程序,您可以在其中查看BusStop时间表.用户可以使用ActionBar PullToRefresh(库)进行刷新.我的应用程序还启用了KitKat上的半透明状态栏. 现在ActionBar Overlay(通常应该与动作栏重叠)现在向上移位. 我怎么解决这个问题? 最好的祝福! 我所做的是为pull-to-refresh布局创建自定义标题布局.我只是复制了原来的一个,添加了状 我正在开发一个应用程序,您可以在其中查看Busstop时间表.用户可以使用Actionbar PullToRefresh(库)进行刷新.我的应用程序还启用了KitKat上的半透明状态栏.

现在Actionbar Overlay(通常应该与动作栏重叠)现在向上移位.

我怎么解决这个问题?

最好的祝福!

解决方法 我所做的是为pull-to-refresh布局创建自定义标题布局.我只是复制了原来的一个,添加了状态栏的高度,通常为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 – ActionBar – PullToRefresh全部内容,希望文章能够帮你解决android – ActionBar – PullToRefresh所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1136263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存