Add Icons to SlidingTabLayout instead of Text

后端 未结 11 1976
执笔经年
执笔经年 2020-12-02 23:57

I\'m implementing a SlidingTabLayout in my android application. What my query is that I\'d like to implement icons in my Sliding Tabs instead of texts for navigation. I sear

相关标签:
11条回答
  • 2020-12-03 00:24

    Check this solution link androidhive about material design tabs /viewpager

    A very good website about android solutions. Hope you will find a solution.

    0 讨论(0)
  • 2020-12-03 00:27

    I recently implemented this library called ViewPagerAddons. It includes SlidingTabLayoutColors, which is exactly what you need. Simply let your pager adapter implement SlidingTabLayouColors.ImageProvider interface, override getPageImage method and return the image resource ids according to the page positions. Simple.

    Here's the link to the library (set up instructions included): https://bitbucket.org/enthusiast94/viewpageraddons/src

    0 讨论(0)
  • 2020-12-03 00:28

    The key to this is to return a SpannableString, containing your icon in an ImageSpan, from your PagerAdapter's getPageTitle(position) method:

    private int[] imageResId = {
            R.drawable.ic_tab_notifications,
            R.drawable.ic_tab_weather,
            R.drawable.ic_tab_calendar
    };
    
    @Override
    public CharSequence getPageTitle(int position) {
        Drawable image = getResources().getDrawable(imageResId[position]);
        image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
        SpannableString sb = new SpannableString(" ");
        ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
        sb.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        return sb;
    }
    

    Normally this be would be enough, but the default tab created by SlidingTabLayout makes a call to TextView#setAllCaps(true) which effectively disables all ImageSpans, so you'll have to use a custom tab view instead:

    res/layout/custom_tab.xml

    <?xml version="1.0" encoding="utf-8"?>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="12sp"
        android:textStyle="bold"
        android:background="?android:selectableItemBackground"
        android:padding="16dp"
        />
    

    and where ever you setup/bind to your ViewPager:

    SlidingTabLayout slidingTabLayout = (SlidingTabLayout) view.findViewById(R.id.sliding_tabs);
    slidingTabLayout.setCustomTabView(R.layout.custom_tab, 0);
    slidingTabLayout.setViewPager(viewPager);
    

    (make sure to call setCustomTabView before setViewPager)

    0 讨论(0)
  • 2020-12-03 00:33

    To customize SlidingTabLayout the way you want, you only need to modify the method populateTabStrip():

    public void populateTabStrip() {
            final PagerAdapter adapter = mViewPager.getAdapter();
            final View.OnClickListener tabClickListener = new TabClickListener();
    
            for (int i = 0; i < adapter.getCount(); i++) {
                View tabView = null;
    
                tabView = LayoutInflater.from(getContext()).inflate(R.layout.tab_layout, mTabStrip,
                        false);
    
                ImageView iconImageView = (ImageView) tabView.findViewById(R.id.tab_layout_icon);
                iconImageView.setImageDrawable(getContext().getResources().getDrawable(getIconResourceArray()[i]));
    
                tabView.setOnClickListener(tabClickListener);
    
                mTabStrip.addView(tabView);
            }
        }
    

    Your layout could be something like that:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="75dp"
        android:paddingTop="15dp"
        android:layout_height="50dp"
        android:orientation="vertical">
    
        <ImageView
            android:id="@+id/tab_layout_icon"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_gravity="center" />
    </LinearLayout>
    

    The way you implement the getResourceArray() method is up to you. Here is how I did:

    public class IconSlidingTabLayout extends HorizontalScrollView {
        private Integer[] mIconResourceArray;
    
        ...
    
        public Integer[] getIconResourceArray() {
            return mIconResourceArray;
        }
    
        public void setIconResourceArray(Integer[] mIconResourceArray) {
            this.mIconResourceArray = mIconResourceArray;
        }
    }
    

    In the activity:

    mSlidingTabLayout = (IconSlidingTabLayout) findViewById(R.id.icon_sliding_tab_layout);
    Integer[] iconResourceArray = { R.drawable.news_tab_icon,
            R.drawable.challenges_tab_icon, R.drawable.trophies_tab_icon,
            R.drawable.leaderboard_tab_icon };
    mSlidingTabLayout.setIconResourceArray(iconResourceArray);
    

    Be aware that in order to have access to R.layout.tab_layout*, you have to import yourpackage.R instead of android.R as it is by default in SlidingTabStrip.

    0 讨论(0)
  • 2020-12-03 00:33

    Ok.. there are many ways of implementing this change. This is the most quick and dirty one, just for the idea..

    Substitue the method SlidingTabLayout.populateTabStrip() for this..

        private void populateTabStrip() {
        final OnClickListener tabClickListener = new TabClickListener();
    
        View tabView = LayoutInflater.from(getContext()).inflate(R.layout.tab_notif_icon_only, mTabStrip, false);
        tabView.setOnClickListener(tabClickListener);
        mTabStrip.addView(tabView);
    
        tabView = LayoutInflater.from(getContext()).inflate(R.layout.tab_weather_icon_only, mTabStrip, false);
        tabView.setOnClickListener(tabClickListener);
        mTabStrip.addView(tabView);
    
        tabView = LayoutInflater.from(getContext()).inflate(R.layout.tab_calendar_icon_only, mTabStrip, false);
        tabView.setOnClickListener(tabClickListener);
        mTabStrip.addView(tabView);
    

    Create each layout this way LinearLayout > ImageView elements, src pointing to icon..

    0 讨论(0)
提交回复
热议问题