欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Material加载进度条制作代码

程序员文章站 2024-02-16 19:59:49
最近看了几款app的加载进度都是这种风格,感觉还不错,在网上找了一些资料,自己小练兵了一把: 主要运用的开源框架: /viewpagerindicator_libr...

最近看了几款app的加载进度都是这种风格,感觉还不错,在网上找了一些资料,自己小练兵了一把:

Android Material加载进度条制作代码

主要运用的开源框架:
/viewpagerindicator_library  主要就是tab页切换指示器
/ptr-lib 进度条 下载地址:https://github.com/liaohuqiu/android-ultra-pull-to-refresh

一、使用方法

布局文件

<?xml version="1.0" encoding="utf-8"?> 
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:background="@color/bg_color" 
  android:orientation="vertical" > 
 
  <in.srain.cube.views.ptr.ptrframelayout 
    xmlns:cube_ptr="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/material_style_ptr_frame" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    cube_ptr:ptr_duration_to_close="100" 
    cube_ptr:ptr_duration_to_close_header="100" 
    cube_ptr:ptr_keep_header_when_refresh="true" 
    cube_ptr:ptr_pull_to_fresh="false" 
    cube_ptr:ptr_ratio_of_header_height_to_refresh="1.2" 
    cube_ptr:ptr_resistance="1.7" > 
 
    <listview 
      android:id="@+id/article_listview" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:cachecolorhint="#00000000" 
      android:divider="@color/line" 
      android:dividerheight="10dp" /> 
  </in.srain.cube.views.ptr.ptrframelayout> 
 
</linearlayout>

在java代码中进行控件声明,设置相关参数

mptrframelayout = (ptrframelayout) mrootview.findviewbyid(r.id.material_style_ptr_frame); 
     
    // header 
    final materialheader header = new materialheader(getactivity()); 
    int[] colors = getresources().getintarray(r.array.google_colors); 
    header.setcolorschemecolors(colors); 
    header.setlayoutparams(new ptrframelayout.layoutparams(-1, -2)); 
    header.setpadding(0, utils.dip2px(getactivity(), 15), 0, utils.dip2px(getactivity(), 10)); 
    header.setptrframelayout(mptrframelayout); 
     
    mptrframelayout.setpincontent(true); 
    mptrframelayout.setloadingmintime(100); 
    mptrframelayout.setdurationtocloseheader(100); 
    mptrframelayout.setheaderview(header); 
    mptrframelayout.addptruihandler(header); 
    mptrframelayout.setptrhandler(new ptrhandler() { 
      @override 
      public boolean checkcandorefresh(ptrframelayout frame, view content, view header) { 
        return ptrdefaulthandler.checkcontentcanbepulleddown(frame, article_listview, header); 
      } 
 
      @override 
      public void onrefreshbegin(final ptrframelayout frame) { 
        pagenum = 1; 
        dorequest(pagenum, true); 
      } 
    }); 

手动刷新:mptrframelayout.autorefresh();
结束刷新:mptrframelayout.refreshcomplete();
mptrframelayout.setpincontent(true);这里可以根据个人喜好设置true或者false,true则在刷新的时候,将布局里的内容固定不动,false则是在刷新的时候进度条会将布局内容挤下来。
监听listview是否滑动到底部,如果到达底部,则显示底部加载更多的进度条。

moreview = finder.inflate(getactivity(), r.layout.loading_more_footer); 
    moreview.setvisibility(view.gone); 
    article_listview = (listview) mrootview.findviewbyid(r.id.article_listview); 
    article_listview.addfooterview(moreview); 
    adapter = new articlelistadapter(getactivity()); 
    article_listview.setadapter(adapter); 
    article_listview.setonitemclicklistener(new onitemclicklistener() { 
 
      @override 
      public void onitemclick(adapterview<?> parent, view view, 
          int position, long id) { 
        article article = (article) adapter.getitem(position); 
        intent intent = new intent(getactivity(), 
            appbrowseractivity.class); 
        intent.putextra("w_url", article.geturl()); 
        intent.putextra("share_desc", article.gettitle()); 
        intent.putextra("share_pic", article.getpicurl()); 
        startactivity(intent); 
      } 
    }); 
    article_listview.setonscrolllistener(new onscrolllistener(){  
      @override  
      public void onscrollstatechanged(abslistview view, int scrollstate){  
        // 当不滚动时  
        if (scrollstate == onscrolllistener.scroll_state_idle) {  
          // 判断是否滚动到底部  
          if (view.getlastvisibleposition() == view.getcount() - 1) { 
            //加载更多功能的代码  
            moreview.setvisibility(view.visible); 
            pagenum++; 
            dorequest(pagenum, false); 
          }  
        }  
      } 
 
      @override 
      public void onscroll(abslistview view, int firstvisibleitem, 
          int visibleitemcount, int totalitemcount) { 
        // todo auto-generated method stub 
         
      }  
    }); 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。