可以通过以下代码在Fragment中设置背景为黑色:
public class MyFragment extends Fragment {
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_view, container, false);
// Set the background color of the fragment
view.setBackgroundColor(Color.BLACK);
return view;
} }