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.
4 つのタブを作成しましたが、各タブを異なるブロックの色にしたいのですが、これは xml ファイルまたは Java ファイルで行う必要がありますか? タブウィジェット全体に対して1つのxmlファイルしかないため、Javaを想定しています。
個々のタブをカスタマイズしてみてください 次のようなものを使用してみてください
TabWidget tabWidget = getTabWidget(); for(int i = 0; i < tabWidget.getChildCount(); i++) { RelativeLayout tabLayout = (RelativeLayout) tabWidget.getChildAt(i); tabLayout.setBackgroundDrawable(someimage); }