Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望对我的标签有这种外观,例如,当用户单击某个标签或焦点时,该标签的图像应该被放大。
您可以在 Android 中随意使用标签大小,这有点粗糙,但可以做到
tabHost.getTabWidget().getChildAt(1).getLayoutParams().height = tabHeight;
其中 childAt 是您要使用的选项卡。当我这样做时,我通常已将所有选项卡修改为相同的高度(循环遍历它们),但它应该允许您像您想要的那样一次动态地更改高度.
抓住用户选择它,然后将最后选择的大小设置回“正常”并增加所选大小。