PreferenceFragment background color

前端 未结 3 1898
遥遥无期
遥遥无期 2021-01-01 11:11

I am using a PreferenceFragment (without a ListView), but am unable to set the background color, and it seems to be transparent.

How can I

3条回答
  •  被撕碎了的回忆
    2021-01-01 11:31

    try this.

      @Override
      public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
            super.onViewCreated(view, savedInstanceState);
            getListView().setBackgroundColor(Color.BLACK);
      }
    

提交回复
热议问题