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

  • Home
  • SEARCH
  • 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 9114797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:16:52+00:00 2026-06-17T04:16:52+00:00

I want to implement two vertical list views A and B such that only

  • 0

I want to implement two vertical list views A and B such that only 1 of them is visible at a time and a horizontal scroll shows the next list.

I want the scrolling to be smooth ie while you touch down and move your finger the present list moves along and the new list moves in … the effect while moving images in gallery.

I have been able to scroll bw the views and with the use of translate animation am being able to show the smooth transition but what I want to achieve is the gallery like effect.

So horizontal scroll switches bw diff list views and vertical scroll can be used to scroll through the list.

  • 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-17T04:16:53+00:00Added an answer on June 17, 2026 at 4:16 am

    You could use a ViewPager to accomplish this.
    http://developer.android.com/reference/android/support/v4/view/ViewPager.html

    main.xml

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />
    
    </LinearLayout>
    

    MainActivity.java

    ....
    
    onCreate()...
     mViewPager = (ViewPager) findViewById(R.id.pager);
    
                mViewPager.setAdapter(new HomePagerAdapter(getSupportFragmentManager()));
    //If your Activity implements ViewPager.OnPageChangeListener
      //          mViewPager.setOnPageChangeListener(this);
    ...
    
    private class HomePagerAdapter extends FragmentPagerAdapter {
        public HomePagerAdapter(FragmentManager fm) {
            super(fm);
        }
    
        @Override
        public Fragment getItem(int position) {
            switch (position) {
                case 0:
                    return (mMyListViewFragment1 = new MyListViewFragment());
    
                case 1:
                    return (mMyListViewFragment2 = new MyListViewFragment());
    
            }
            return null;
        }
    
        @Override
        public int getCount() {
            return 2;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that instantiates two classes which implement interfaces. I want one
I want to implement a slider, which is basically two lines, one vertical and
Here is what I want to implement: I have two hyperlinks that are displayed
I want to implement an override of equals that compares two Java Queue objects
I want to implement two different dictionaries with a predefined set of valid keys.
I want to implement a view having two layers on it. Then i want
I want to implement a scenario where two endpoints can securely communicate with each
I want to implement a multithread system (two threads will do) and I followed
I want to implement a class which can be used by two classes of
Microsoft has announce that WindowsLiveID become a OpenID provider . I want implement it

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.