-
I have an application that has two nested ViewFlippers. Inside the most nested ViewFlipper is a fragment that contains a PagerSlidingTabStrip. In general the strip works fine, but in many cases I want…
-
Hello, I use PagerSlidingTabStrip inside in fragment, but not appear, please help me to fix this...
mSectionsPagerAdapter = new SectionsPagerAdapter(getChildFragmentManager());
tabs = (PagerSlidin…
-
At the moment I am trying to migrate project to RoboGuice (it's a new project). But I'm stumbled for creating tabs in RoboGuice. I tried the following code, but the TabsPagerAdapter does not accept Ro…
-
### Steps to reproduce :scroll:
1. Define an activity with a tablayout:
```csharp
var viewPager = FindViewById(Resource.Id.viewpager);
if (viewPager != null)
…
-
**Is your feature request related to a problem? Please describe.**
When ViewPager2 is configured to have a very high `getItemCount()` and used with TabLayout and TabLayoutMediator, the app will hang …
-
Hello!
Someone can help me?
How can i stop de video when a change my tab on viewpager?
i used this..but not work
@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
…
-
Is there anyway I can add Icons to tabs? Like Facebook tabs. Without text?
-
I don't think this issue is a duplicate of #185 unless I'm missing something, because the same issue occurs on my phone as well as my tablet. I'm using the CaldroidFragment with a TabLayout like this:…
-
``` java
Adapter adapter = new Adapter(getSupportFragmentManager());
adapter.addFragment(new CheeseListFragment(), "Tab 1");
adapter.addFragment(new CheeseListFragment(), "Tab …
-
现在很多app进入主界面之后,都会实现一个tab,请问你是如何实现的?
说说比较常见的实现吧
1.FragmentTabHost+Fragment
2.LinearLayout 分成n等分,每个等分为一个tab,在tab的上方为一个FrameLayout作为试图容器,点击每个tab时,将视图容器的View替换成对应的Fragment.