/* * Copyright © 2016 TIBCO Software,Inc.All rights reserved. * http://community.jaspersoft.com/project/jaspermobile-android * * Unless you have purchased a commercial license agreement from TIBCO Jaspersoft, * the following license terms apply: * * This program is part of TIBCO Jaspersoft Mobile for Android. * * TIBCO Jaspersoft Mobile is free software:you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation,either version 3of the License,or * (at your option)any later version. * * TIBCO Jaspersoft Mobile is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY;without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with TIBCO Jaspersoft Mobile for Android.If not,see * <http://www.gnu.org/licenses/lgpl>. */ package com.jaspersoft.android.jaspermobile.widget; import android.annotation.SuppressLint; import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.widget.SeekBar; import android.widget.TextView; import android.widget.Toast; import com.jaspersoft.android.jaspermobile.R; import org.androidannotations.annotations.AfterViews; import org.androidannotations.annotations.Click; import org.androidannotations.annotations.EViewGroup; import org.androidannotations.annotations.SeekBarProgressChange; import org.androidannotations.annotations.SeekBarTouchStop; import org.androidannotations.annotations.ViewById; /** * @author Tom Koptel * @since 2.0 */ @EViewGroup(R.layout.view_pagination_seekbar) public class SeekPaginationView extends AbstractPaginationView { @ViewById protected SeekBar seekBar; @ViewById protected TextView currentPageLabel; @ViewById protected TextView totalPageLabel; @ViewById protected View progressLayout; private Toast mToast; public SeekPaginationView(Context context) { super(context); } public SeekPaginationView(Context context, AttributeSet attrs) { super(context, attrs); } public SeekPaginationView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } public SeekPaginationView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); } @SuppressLint("ShowToast") @AfterViews final void init() { mToast = Toast.makeText(getContext(), "", Toast.LENGTH_SHORT); } @Override protected void alterTotalCount() { seekBar.setEnabled(true); progressLayout.setVisibility(GONE); totalPageLabel.setVisibility(VISIBLE); totalPageLabel.setText(getContext().getString(R.string.of, getTotalPages())); } @Click(R.id.currentPageLabel) final void selectCurrentPage() { onOnPickerSelectedListener.onPagePickerRequested(); } @Override protected void alterControlStates() { currentPageLabel.setText(String.valueOf(getCurrentPage())); if (isTotalPagesLoaded()) { int currentProgress = Math.round((float) getCurrentPage() * 100 / (float) getTotalPages()); seekBar.setProgress(currentProgress); } } @SeekBarProgressChange(R.id.seekBar) final void onProgressChange() { mToast.setText(String.valueOf(currentPageFromProgress())); mToast.show(); } @SeekBarTouchStop(R.id.seekBar) final void onProgressChangeOnSeekBar() { updateCurrentPage(currentPageFromProgress()); onPageChangeListener.onPageSelected(getCurrentPage()); } private int currentPageFromProgress() { int progress = seekBar.getProgress(); int currentPage; if (progress == 0) { currentPage = FIRST_PAGE; } else { currentPage = Math.round((float) getTotalPages() * (float) progress / 100); } if (currentPage == 0) { currentPage = FIRST_PAGE; } return currentPage; } }