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.
我创建了四个选项卡,但希望每个选项卡具有不同的块颜色 - 这应该在 xml 或 java 文件中完成吗?我假设使用 java,因为我只有一个用于整个选项卡小部件的 xml 文件。
尝试自定义各个选项卡尝试使用类似的东西
TabWidget tabWidget = getTabWidget(); for(int i = 0; i < tabWidget.getChildCount(); i++) { RelativeLayout tabLayout = (RelativeLayout) tabWidget.getChildAt(i); tabLayout.setBackgroundDrawable(someimage); }