使用带有选项卡布局的自定义视图时无法从选项卡中删除填充
Posted
技术标签:
【中文标题】使用带有选项卡布局的自定义视图时无法从选项卡中删除填充【英文标题】:Cannot remove Padding from Tabs when using Custom views with Tab Layout 【发布时间】:2016-02-12 08:29:51 【问题描述】:我在自定义视图中添加了一个相对布局,并在选项卡布局中添加了它。我为选项卡使用白色背景,并且没有在选项卡自定义布局中应用任何填充。但随后我也在选项卡上得到填充,因此在选项卡中显示了一些灰色背景,就好像 android 在内部对选项卡应用填充一样。我正在尝试显示三个我能够执行的文本视图,但其中一个由于应用于选项卡的填充而被截断。我也希望标签的背景颜色一致。
这是我的代码:
activity_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:fitsSystemWindows="true"
tools:context="com.customtablayoutapplication.HomeActivity">
<android.support.design.widget.AppBarLayout
android:layout_
android:layout_
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_home" />
</android.support.design.widget.CoordinatorLayout>
fragment_home.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:orientation="vertical"
android:theme="@style/AppTheme.AppBarOverlay"
tools:context="com.customtablayoutapplication.HomeFragment"
tools:showIn="@layout/activity_home">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_
android:layout_
app:tabGravity="fill"
app:tabMode="fixed" />
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</LinearLayout>
custom_tab.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:background="@android:color/white"
android:layout_
android:layout_gravity="center">
<TextView
android:id="@+id/total_request_count"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="12"
android:textAllCaps="false"
android:visibility="gone"
android:textColor="@color/colorPrimaryDark"
android:textSize="12sp" />
<RelativeLayout
android:layout_
android:layout_
android:layout_centerVertical="true"
android:fitsSystemWindows="true"
android:gravity="center">
<TextView
android:id="@+id/request_status"
android:layout_
android:layout_
android:gravity="center"
android:text="New Request"
android:textAllCaps="false"
android:textColor="@color/colorPrimaryDark"
android:textSize="12sp" />
<TextView
android:id="@+id/badge_icon"
android:layout_
android:layout_
android:layout_alignParentRight="true"
android:layout_alignTop="@id/request_status"
android:layout_marginLeft="-3dp"
android:layout_marginTop="15dp"
android:background="@drawable/circular_text_background"
android:clickable="false"
android:visibility="gone" />
</RelativeLayout>
</RelativeLayout>
HomeFragment.java:
package com.customtablayoutapplication;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.List;
/**
* A placeholder fragment containing a simple view.
*/
public class HomeFragment extends Fragment
private ViewPager viewPager;
private TabLayout tabLayout;
public HomeFragment()
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View view = inflater.inflate(R.layout.fragment_home, container, false);
viewPager = (ViewPager) view.findViewById(R.id.viewpager);
setupViewPager(viewPager);
tabLayout = (TabLayout) view.findViewById(R.id.tabs);
tabLayout.setupWithViewPager(viewPager);
setUpTabIcons();
return view;
private void setUpTabIcons()
RelativeLayout tabNewRequest= (RelativeLayout) LayoutInflater.from(getActivity()).inflate(R.layout.custom_tab, null);
TextView tabNewRequesttxt = (TextView) tabNewRequest.findViewById(R.id.request_status);
tabNewRequesttxt.setText("New Request");
tabLayout.getTabAt(0).setCustomView(tabNewRequest);
RelativeLayout tabInProgress= (RelativeLayout) LayoutInflater.from(getActivity()).inflate(R.layout.custom_tab, null);
TextView tabInProgresstxt = (TextView) tabInProgress.findViewById(R.id.request_status);
tabInProgresstxt.setText("In Progress");
tabLayout.getTabAt(1).setCustomView(tabInProgress);
RelativeLayout tabWorkDone= (RelativeLayout) LayoutInflater.from(getActivity()).inflate(R.layout.custom_tab, null);
TextView tabWorkDonetxt = (TextView) tabWorkDone.findViewById(R.id.request_status);
tabWorkDonetxt.setText("Work Done");
tabLayout.getTabAt(2).setCustomView(tabWorkDone);
RelativeLayout tabDelivered= (RelativeLayout) LayoutInflater.from(getActivity()).inflate(R.layout.custom_tab, null);
TextView tabDeliveredtxt = (TextView) tabDelivered.findViewById(R.id.request_status);
tabDeliveredtxt.setText("Delivered");
tabLayout.getTabAt(3).setCustomView(tabDelivered);
private void setupViewPager(ViewPager viewPager)
ViewPagerAdapter adapter = new ViewPagerAdapter(getChildFragmentManager());
adapter.addFragment(new NewRequestFragment(), "New Request");
adapter.addFragment(new InProgressFragment(), "In Progress");
adapter.addFragment(new WorkDoneFragment(), "Work Done");
adapter.addFragment(new DeliveredFragment(), "Delivered");
viewPager.setAdapter(adapter);
class ViewPagerAdapter extends FragmentPagerAdapter
private final List<Fragment> mFragmentList = new ArrayList<>();
private final List<String> mFragmentTitleList = new ArrayList<>();
public ViewPagerAdapter(FragmentManager manager)
super(manager);
@Override
public Fragment getItem(int position)
return mFragmentList.get(position);
@Override
public int getCount()
return mFragmentList.size();
public void addFragment(Fragment fragment, String title)
mFragmentList.add(fragment);
mFragmentTitleList.add(title);
@Override
public CharSequence getPageTitle(int position)
return mFragmentTitleList.get(position);
固定标签有灰色背景,白色背景:
【问题讨论】:
我看到了TabLayout的内部源码,其实是使用了paddingStart、PaddingEnd。等请建议我如何删除填充。她是我的问题的屏幕截图链接:i.stack.imgur.com/Zqx1U.png 【参考方案1】: <android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_
android:layout_
android:layout_centerInParent="true"
android:background="@drawable/bg_forum_tab"
app:tabIndicatorColor="@color/colorBtnBg"
app:tabIndicatorHeight="0dp"
app:tabPaddingBottom="-1dp"
app:tabPaddingEnd="-1dp"
app:tabPaddingStart="-1dp"
app:tabPaddingTop="-1dp"
app:tabSelectedTextColor="@color/colorBtnBg"
app:tabTextColor="@color/colorWhite" />
这样设置tabPaddingStart
/tabPaddingEnd
/tabPaddingTop
/tabPaddingBottom
。
【讨论】:
我尝试了这个解决方案,但没有帮助我......还是一样 这就是我的答案!谢谢 我发现tabPaddingTop/tabPaddingBottom
仅在customView
的根视图为RelativeLayout
时才有效。使用LinearLayout
和FragmetLayout
令人惊讶的是不起作用。并且填充应该是0dp
而不是-1dp
@almaz_from_kazan 非常感谢!!花了一整天时间研究TabLayout
内部结构,试图解决这个问题,而我应该用RelativeLayout
替换我的自定义FrameLayout
。
我的父布局是RelativeLayout,但制表符仍然不起作用【参考方案2】:
它对我有用:
在您的TabLayout
中,您必须将tabPaddingEnd
和tabPaddingStart
设置为0dp
。
在您的自定义视图中,您必须将layout_width
和layout_height
设置为match_parent
,以便用您的自定义颜色填充所有空间。
标签布局:
<android.support.design.widget.TabLayout
android:id="@+id/tl_dashboard"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
app:tabGravity="fill"
app:tabIndicatorColor="@color/colorRed"
app:tabMode="fixed"
app:tabPaddingStart="0dp"
app:tabPaddingEnd="0dp"/>
和自定义视图:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_>
<!--Your widgets-->
</RelativeLayout>
【讨论】:
实际上当我设置上述属性时它不起作用,你能帮我解决这个问题吗【参考方案3】:在向选项卡布局添加新选项卡时,我通过将自定义视图父级的边距和填充设置为零来解决此问题。
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
lp.setMargins(0,0,0,0);
TabLayout.Tab newTab = mTabsBottom.newTab().setCustomView(R.layout.view_custom_tab);
setupTabParentLayout(newTab.getCustomView(), lp);
..
..
..
private void setupTabParentLayout(View customView, LinearLayout.LayoutParams lp)
LinearLayout tabParent = (LinearLayout) customView.getParent();
tabParent.setLayoutParams(lp);
tabParent.setPadding(0,0,0,0);
这里的技巧是使用 LinearLayout.LayoutParams 作为自定义视图的父级。
【讨论】:
这对我有帮助。【参考方案4】:通过 XML,您只能像这样删除左右填充:
app:tabPaddingEnd="0dp"
app:tabPaddingStart="0dp"
注意,这种方式不适用于 TOP 和 BOTTOM 填充,但我找到了下一个解决方案:
当您使用自定义视图作为选项卡项时,您需要将 LayoutParams 设置为视图并设置填充 0。
for (int i = 0; i < tabLayout.getTabCount(); i++)
View tabView = LayoutInflater.from(context)
.inflate(LayoutInflater.from(this), R.layout.item_main_tabview, null, false);
tabView.setLayoutParams(new TableLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
tabView.setPadding(0, 0, 0, 0);
tabLayout.getTabAt(i).setCustomView(tabViewBinding.getRoot());
【讨论】:
【参考方案5】:我知道这是一个老问题,但这可以帮助其他人。填充开始和填充结束不会删除选项卡之间的空间。解决办法是:
android:clipToPadding="true"
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_
android:layout_
android:background="@color/colorGrayBackground"
app:tabGravity="fill"
app:tabPaddingStart="0dp"
app:tabPaddingEnd="0dp"
app:tabContentStart="0dp"
app:tabIndicatorHeight="0dp"
android:clipToPadding="true"
app:tabMode="fixed" />
然后您可以将填充设置为“0dp”。希望它可以帮助某人。
【讨论】:
【参考方案6】:<android.support.design.widget.TabLayout
android:id="@+id/tabview"
app:layout_constraintTop_toBottomOf="@+id/ivpromo"
android:layout_
app:tabMode="scrollable"
app:tabIndicatorHeight="0dp"
app:tabContentStart="0dp"
android:clipToPadding="true"
app:tabMaxWidth="45dp"
app:tabGravity="fill"
app:tabPaddingStart="0dp"
app:tabPaddingEnd="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:tabIndicatorColor="@android:color/transparent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toRightOf="@+id/tvcode"
android:layout_/>
【讨论】:
【参考方案7】:如果您尝试了很多东西但没有一个起作用,这就是我最终要做的:只是设置
android:layout_wrap_content"> <androidx.viewpager.widget.ViewPager android:layout_ android:layout_gravity="bottom" android:layout_/> <com.google.android.material.tabs.TabLayout android:layout_ android:layout_ android:layout_gravity="bottom" app:tabBackground="@drawable/tab_selector" app:tabGravity="center" app:tabIndicatorHeight="0dp"/> </FrameLayout>
【讨论】:
【参考方案8】:我从代码创建 TabLayout,我只提供帮助
for (int position = 0; position < mTabLayout.getTabCount(); position++) TabLayout.Tab tab = mTabLayout.getTabAt(position); if (tab != null) ViewCompat.setPaddingRelative(tab.view, 0, 0, 0, 0);
【讨论】:
以上是关于使用带有选项卡布局的自定义视图时无法从选项卡中删除填充的主要内容,如果未能解决你的问题,请参考以下文章
如何在列表视图之上设置选项卡布局但在 Android 中不覆盖?