Java tutorial
/* * Copyright (C) 2016 Olmo Gallegos Hernndez. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.ezbim.docassist.pdfandroid.view; import android.content.Context; import android.content.res.TypedArray; import android.support.v4.view.ViewPager; import android.util.AttributeSet; import net.ezbim.docassist.R; import net.ezbim.docassist.pdfandroid.adapter.PDFPagerAdapter; public class PDFViewPager extends ViewPager { protected Context context; public PDFViewPager(Context context, String pdfPath) { super(context); this.context = context; init(pdfPath); } public PDFViewPager(Context context, AttributeSet attrs) { super(context, attrs); this.context = context; init(attrs); } protected void init(String pdfPath) { initAdapter(context, pdfPath); } protected void init(AttributeSet attrs) { if (isInEditMode()) { setBackgroundResource(R.drawable.flaticon_pdf_dummy); return; } if (attrs != null) { TypedArray a; a = context.obtainStyledAttributes(attrs, R.styleable.PDFViewPager); String assetFileName = a.getString(R.styleable.PDFViewPager_assetFileName); if (assetFileName != null && assetFileName.length() > 0) initAdapter(context, assetFileName); } } protected void initAdapter(Context context, String pdfPath) { setAdapter(new PDFPagerAdapter(context, pdfPath, getOffscreenPageLimit())); } }