| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- package com.grkj.iscs.widget;
- import android.content.Context;
- import android.util.AttributeSet;
- import android.view.Gravity;
- import android.view.View;
- import android.widget.LinearLayout;
- import android.widget.TextView;
- import androidx.annotation.Nullable;
- import com.grkj.iscs.R;
- import com.grkj.iscs.util.CommonUtils;
- /**
- * @date 2018/12/16
- *
- * 分页
- */
- public class PageControl extends LinearLayout implements View.OnClickListener {
- private Context context;
- private int maxPage = 1;//最大页
- private int curPage = 1;//当前页
- private int buttonCount = 5;//按钮数
- private int lastButton = 0;//最后一个按钮对应的页码
- private int firstButton = 0;//第一个按钮对应的页码
- private int totalCount; //总页数
- public TextView upPage;//上一页
- public TextView downPage;//下一页
- public PageControl(Context context) {
- this(context, null);
- }
- public PageControl(Context context, @Nullable AttributeSet attrs) {
- this(context, attrs, 0);
- }
- public PageControl(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
- super(context, attrs, defStyleAttr);
- this.context = context;
- this.setBackgroundResource(R.color.white);
- this.setGravity(Gravity.RIGHT);
- initPageComposite();
- }
- private OnPageChangeListener mPageChangeLinstener = new OnPageChangeListener() {
- @Override
- public void pageChanged(PageControl pageControl,int numPerPage) {
- if(mPageChangeLinstener != null){
- mPageChangeLinstener.pageChanged(pageControl,numPerPage);
- }
- }
- };
- public interface OnPageChangeListener {
- void pageChanged(PageControl pageControl,int numPerPage);
- }
- /**
- * @param tCount 总页数
- */
- public void setTotalPage(int tCount) {
- totalCount = tCount;
- setSelectView(curPage);
- }
- /**
- * 创建view
- * @return
- */
- private TextView createView() {
- TextView page = new TextView(context);
- // page.setBackgroundResource(R.drawable.selecter_btn_round5_gray);
- page.setPadding(CommonUtils.INSTANCE.dip2px(10), 0, CommonUtils.INSTANCE.dip2px(10), 0);
- page.setGravity(Gravity.CENTER);
- LayoutParams layoutParam = new LayoutParams(LayoutParams.WRAP_CONTENT, CommonUtils.INSTANCE.dip2px(30));
- page.setMinWidth(CommonUtils.INSTANCE.dip2px(30));
- layoutParam.setMargins(0, 0, CommonUtils.INSTANCE.dip2px(5), 0);
- page.setLayoutParams(layoutParam);
- return page;
- }
- /**
- * 创建中间页码view
- * @param page
- */
- private void createView(int page) {
- TextView countPage = createView();
- countPage.setText(page + "");
- countPage.setTag(page);
- countPage.setOnClickListener(this);
- this.addView(countPage);
- }
- /**
- * 创建上一页view
- */
- private void createPrevious() {
- upPage = createView();
- // upPage.setText(getResources().getString(R.string.page_uppage));
- upPage.setText("上一页");
- upPage.setOnClickListener(this);
- this.addView(upPage, 0);
- }
- /**
- * 创建下一页view
- */
- private void createNext() {
- downPage = createView();
- // downPage.setText(getResources().getString(R.string.page_downpage));
- downPage.setText("下一页");
- downPage.setOnClickListener(this);
- this.addView(downPage);
- }
- /**
- * n个页 创建第一个view
- */
- private void first() {
- TextView first = createView();
- first.setText("1");
- first.setOnClickListener(this);
- this.addView(first);
- }
- /**
- * n个页 创建末页view
- */
- private void last() {
- TextView first = createView();
- first.setText(totalCount+"");
- first.setOnClickListener(this);
- this.addView(first);
- }
- /**
- * n个页 创建...
- */
- private void middleView() {
- TextView first = new TextView(context);
- first.setText("...");
- first.setPadding(CommonUtils.INSTANCE.dip2px(10), 0, CommonUtils.INSTANCE.dip2px(10), 0);
- first.setGravity(Gravity.CENTER);
- first.setOnClickListener(this);
- this.addView(first);
- }
- public void initPageComposite() {
- int temp = maxPage;
- maxPage = totalCount % 1 == 0 ? totalCount / 1 : totalCount / 1 + 1;
- if (temp != maxPage || curPage >= 1) {
- createAllView();
- }
- if (maxPage == 0) {
- removeAllViews();
- return;
- }
- setSelectView(curPage);
- setActionStatus(curPage);
- }
- /**
- * 当前页码为1的时候上一页不可点击
- * 当前页码为末页的时候下一页不可点击
- * @param curPage
- */
- private void setActionStatus(int curPage) {
- if (curPage > 1) {
- upPage.setEnabled(true);
- }else {
- upPage.setEnabled(false);
- }
- if(totalCount > curPage){
- downPage.setEnabled(true);
- }else {
- downPage.setEnabled(false);
- }
- }
- private void setBtnGroup() {
- int n = maxPage / buttonCount;
- if (n == 0) {
- //只有一组
- firstButton = 1;
- lastButton = maxPage;
- } else {
- int i = curPage / buttonCount;
- //有n组
- firstButton = i * buttonCount + 1;
- if (firstButton > curPage) {
- firstButton = (i - 1) * buttonCount + 1;
- }
- lastButton = (firstButton - 1) + buttonCount;
- if (lastButton > maxPage && lastButton > 1) {
- lastButton = maxPage;
- }
- }
- }
- private void createAllView() {
- setBtnGroup();
- this.removeAllViews();
- this.setPadding(CommonUtils.INSTANCE.dip2px(10), CommonUtils.INSTANCE.dip2px(20), CommonUtils.INSTANCE.dip2px(10), CommonUtils.INSTANCE.dip2px(20));
- createPrevious();
- if((firstButton >= buttonCount ||curPage == buttonCount)&& totalCount > buttonCount){
- firstButton = curPage - 2;
- lastButton = curPage + 2;
- }
- if(firstButton > 1 && totalCount > buttonCount){
- first();
- middleView();
- }
- while (firstButton <= lastButton && firstButton <= totalCount) {
- createView(firstButton);
- firstButton++;
- }
- if(lastButton < totalCount){
- middleView();
- last();
- }
- createNext();
- }
- @Override
- public void onClick(View view) {
- if (mPageChangeLinstener == null) return;
- if (view instanceof TextView) {
- TextView tv = (TextView) view;
- String txt = tv.getText().toString();
- // if (txt.equalsIgnoreCase(getResources().getString(R.string.page_uppage))) {
- if (txt.equalsIgnoreCase("上一页")) {
- curPage -= 1;
- curPage = curPage >= 1 ? curPage : 1;
- setSelectView(curPage);
- mPageChangeLinstener.pageChanged(this, curPage);
- initPageComposite();
- return;
- }
- // if (txt.equalsIgnoreCase(getResources().getString(R.string.page_downpage))) {
- if (txt.equalsIgnoreCase("下一页")) {
- curPage += 1;
- curPage = curPage <= maxPage ? curPage : maxPage;
- setSelectView(curPage);
- mPageChangeLinstener.pageChanged(this,curPage);
- initPageComposite();
- return;
- }
- if(txt.equalsIgnoreCase(String.valueOf(1))){
- curPage = 1;
- setSelectView(curPage);
- mPageChangeLinstener.pageChanged(this,curPage);
- initPageComposite();
- return;
- }
- if(txt.equalsIgnoreCase(String.valueOf(totalCount))){
- curPage = totalCount;
- setSelectView(curPage);
- mPageChangeLinstener.pageChanged(this,curPage);
- initPageComposite();
- return;
- }
- }
- if (view.getTag() != null) {
- Object tag = view.getTag();
- curPage = Integer.parseInt(tag.toString());
- mPageChangeLinstener.pageChanged(this,curPage);
- setSelectView(curPage);
- initPageComposite();
- }
- }
- private void setSelectView(int n) {
- for (int i = 0; i < this.getChildCount(); i++) {
- View v = this.getChildAt(i);
- if (v.getTag() != null) {
- int tag = Integer.parseInt(v.getTag().toString());
- if (tag == n) {
- v.setSelected(true);
- // v.setBackgroundResource(R.drawable.selecter_btn_round5_red);
- } else {
- v.setSelected(false);
- // v.setBackgroundResource(R.drawable.selecter_btn_round5_gray);
- }
- }
- }
- }
- /**
- * 设置分页监听事件
- */
- public void setPageChangeListener(OnPageChangeListener pageChangeListener) {
- this.mPageChangeLinstener = pageChangeListener;
- }
- }
|