Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9228419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:19:10+00:00 2026-06-18T05:19:10+00:00

When using a ViewPager with PagerTabStrip : <?xml version=1.0 encoding=utf-8?> <android.support.v4.view.ViewPager xmlns:android=http://schemas.android.com/apk/res/android android:id=@+id/pager android:layout_width=fill_parent

  • 0

When using a ViewPager with PagerTabStrip:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

<android.support.v4.view.PagerTabStrip
    android:id="@+id/pager_tab_strip"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="top"
    android:paddingTop="4dp"
    android:paddingBottom="4dp"
    />

</android.support.v4.view.ViewPager>

with pager having an empty adapter:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ViewPager pager = (ViewPager) findViewById(R.id.pager);

    FragmentPagerAdapter adapter = new FragmentPagerAdapter(getFragmentManager()) {

        @Override
        public CharSequence getPageTitle(int position) {
            return "test";
        }

        @Override
        public Fragment getItem(int i) {
            return null;
        }

        @Override
        public int getCount() {
            return 0;
        }
    };
    pager.setAdapter(adapter);

}

App crashes on touching/scrolling the Tab Strip:

java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0
        at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:251)
        at java.util.ArrayList.get(ArrayList.java:304)
        at android.support.v4.view.ViewPager.performDrag(ViewPager.java:1990)

I think this line in ViewPager.performDrag() might be the cause.

Is it a bug or something wrong with my view setup ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:19:11+00:00Added an answer on June 18, 2026 at 5:19 am

    In ViewPager code array items are accessed without any checks (when there is no page ):

    final ItemInfo firstItem = mItems.get(0);
    final ItemInfo lastItem = mItems.get(mItems.size() - 1);
    

    This causes it to crash.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the android ViewPager : http://developer.android.com/reference/android/support/v4/view/ViewPager.html This class allows you to basically
Im using this guide to implement a ViewPager : http://mobile.tutsplus.com/tutorials/android/android-user-interface-design-horizontal-view-paging/ This is my main.xml
I am using the ViewPager from the Android Support package (android.support.v4.view.ViewPager). My ViewPager layout
I am using Android's support.v4 package to develop a ViewPager containing multiple Fragment s.
I'm using the new ViewPager -view from the Android compatibility library, and I can't
Using sdk version 8, with android-support-v4, I am trying to make implement a PagerAdapter
In my Android application, The user can browse some HTML pages using ViewPager, and
I am using ViewPager (support library). I want to know every time the ViewPager
In my activity, I'm using ViewPager to swipe left/right and show month view accordingly.
In my android application, I layout the main activity using ViewPager with Action Bar.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.