我创建了一个可以帮助您进行此布局的库,但我没有使用 Toolbar(我使用的是 RelativeLayout)。
我刚刚创建了一个扩展 RelativeLayout 的自定义视图,并在其中放置了所有元素(工具栏的 LinearLayout、标记的 View 和 ViewPager)。
这是 CustomView 类:
public class ToolbarPagerView extends RelativeLayout {
private static final @IdRes int MENU_ID = 0x0042;
private static final @IdRes int PAGER_ID = 0x0666;
private int totalPages;
private int currentPage;
private @ColorInt int toolbarColor;
private @ColorInt int itemColor;
private ToolbarPagerAdapter toolbarPagerAdapter;
private LinearLayout menu;
private ViewPager viewPager;
private View marker;
public ToolbarPagerView(Context context, AttributeSet attrs) {
super(context, attrs);
initialize(context, attrs);
}
public ToolbarPagerView(Context context, AttributeSet attrs, int defStyleAttr) {
this(context, attrs, defStyleAttr, 0);
initialize(context, attrs);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public ToolbarPagerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
initialize(context, attrs);
}
private void initialize(Context context, AttributeSet attrs) {
/* RETRIEVE MAX PAGES */
TypedArray attributes = context.obtainStyledAttributes(attrs, R.styleable.ToolbarPagerView);
try {
toolbarColor = attributes.getInteger(R.styleable.ToolbarPagerView_toolbar_color, R.color.color_primary_dark);
itemColor = attributes.getInteger(R.styleable.ToolbarPagerView_item_color, R.color.color_accent);
} finally {
attributes.recycle();
setViews(context);
}
}
private void setViews(Context context) {
/* MENU */
menu = new LinearLayout(context);
menu.setId(MENU_ID);
menu.setOrientation(LinearLayout.HORIZONTAL);
menu.setBackgroundColor(toolbarColor);
menu.setGravity(Gravity.CENTER);
addView(menu);
LayoutParams menuParams = (LayoutParams) menu.getLayoutParams();
TypedArray toolbarAttributes = context.getTheme().obtainStyledAttributes(new int[] { android.R.attr.actionBarSize });
menuParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
menuParams.height = (int) toolbarAttributes.getDimension(0, 0);
/* PAGES */
viewPager = new ViewPager(context);
viewPager.setId(PAGER_ID);
addView(viewPager);
LayoutParams pagerParams = (LayoutParams) viewPager.getLayoutParams();
pagerParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
pagerParams.height = ViewGroup.LayoutParams.MATCH_PARENT;
pagerParams.addRule(BELOW, MENU_ID);
viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
marker.setX((positionOffsetPixels / totalPages) + (marker.getMeasuredWidth() * position));
}
@Override
public void onPageSelected(int position) {
currentPage = position;
}
@Override
public void onPageScrollStateChanged(int state) {
}
});
/* SHADOW */
View shadow = new View(context);
shadow.setBackgroundResource(R.drawable.shadow);
addView(shadow);
LayoutParams shadowParams = (LayoutParams) shadow.getLayoutParams();
shadowParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
shadowParams.height = (int) context.getResources().getDimension(R.dimen.shadow_height);
shadowParams.addRule(BELOW, MENU_ID);
/* MARKER */
marker = new View(context);
marker.setBackgroundColor(itemColor);
addView(marker);
LayoutParams markerParams = (LayoutParams) marker.getLayoutParams();
markerParams.height = (int) context.getResources().getDimension(R.dimen.marker_height);
markerParams.addRule(ALIGN_BOTTOM, MENU_ID);
getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if(Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) {
getViewTreeObserver().removeGlobalOnLayoutListener(this);
} else {
getViewTreeObserver().removeOnGlobalLayoutListener(this);
}
LayoutParams markerParams = (LayoutParams) marker.getLayoutParams();
markerParams.width = menu.getMeasuredWidth() / totalPages;
marker.setX(currentPage * markerParams.width);
}
});
}
public void setAdapter(FragmentManager fragmentManager) {
toolbarPagerAdapter = new ToolbarPagerAdapter(fragmentManager);
viewPager.setAdapter(toolbarPagerAdapter);
}
public void addPage(Fragment fragment) {
addPage(R.mipmap.ic_star, fragment);
}
public void addPage(@DrawableRes int icon, Fragment fragment) {
ImageView item = new ImageView(getContext());
item.setImageResource(icon);
item.setTag(totalPages);
item.setColorFilter(itemColor);
TypedArray selectAttributes = getContext().obtainStyledAttributes(new int[]{android.R.attr.selectableItemBackground});
if(Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) {
item.setBackgroundDrawable(selectAttributes.getDrawable(0));
} else {
item.setBackground(selectAttributes.getDrawable(0));
}
menu.setWeightSum(++totalPages);
menu.addView(item);
item.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Integer itemPosition = (Integer) v.getTag();
viewPager.setCurrentItem(itemPosition);
}
});
LinearLayout.LayoutParams itemParams = (LinearLayout.LayoutParams) item.getLayoutParams();
itemParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
itemParams.height = ViewGroup.LayoutParams.MATCH_PARENT;
itemParams.weight = 1;
toolbarPagerAdapter.addPage(fragment);
}
}
这是 CustomAdapter 类:
public class ToolbarPagerAdapter extends FragmentPagerAdapter {
private static final String PAGE_DUPLICATED_MESSAGE = "You're trying to add a duplicated page, are you doublethinking? - Orwell, George / Index: ";
private ArrayList<Fragment> pages;
public ToolbarPagerAdapter(FragmentManager fm) {
super(fm);
pages = new ArrayList<>();
}
public void addPage(Fragment fragment) {
pages.add(fragment);
notifyDataSetChanged();
}
@Override
public Fragment getItem(int position) {
return pages.get(position);
}
@Override
public int getCount() {
return pages.size();
}
}
您可以在这里找到我基于此解决方案创建的演示项目:
https://github.com/PedroOkawa/toolbar-pager-view
如果需要,请查看代码,希望对您有所帮助。