Android如何更改TimePicker主题?

时间:2013-04-14 09:45:24

标签: android themes customization android-theme timepicker

目前我的应用程序使用Theme.Sherlock主题。是否可以更改TimePicker小部件的主题。我想将蓝色分隔符更改为绿色,将白色文本更改为黑色。

我没有发现任何可用的东西(不幸的是android-holo-colors.com工具中缺少TimePicker),希望你有个好主意。

谢谢!

2 个答案:

答案 0 :(得分:0)

由于Android SDK不允许您修改timepicker内的元素。你需要一种方法来做一些黑客行为。 对于文本颜色,您需要更改主题。这是我的片段中的一个小例子。 焦点在" R.style.Picker_Black",我将主题设置为" Theme.Holo.Light"为了展示" Black"时间戳中的文字颜色。

  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    final Context contextThemeWrapper = new ContextThemeWrapper(getActivity(), R.style.Picker_Black);
    LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);
    View v = localInflater.inflate(R.layout.fragment_booking, container, false);
    return v;
  }

在" style.xml"

中定义样式
  <style name="Picker.Black" parent="android:Theme.Holo.Light">
    <item name="android:editTextStyle">@style/Widget.EditText.White</item>
  </style>

For Divider:

public class CustomTimePicker extends TimePicker {
  public CustomTimePicker(Context context) {
    super(context);
    init();
  }

  public CustomTimePicker(Context context, AttributeSet attrs) {
    super(context, attrs);
    init();
  }

  public CustomTimePicker(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init();
  }

  private void init() {
    removeAllDividers(this);
  }

  private void removeAllDividers(ViewGroup picker) {
    for (int i = 0; i < picker.getChildCount(); i++) {
      View view = picker.getChildAt(i);
      if (view instanceof NumberPicker) {
        try {
          Field field = NumberPicker.class.getDeclaredField("mSelectionDivider");
          field.setAccessible(true);
          field.set(view, null);
        } catch (Exception e) {
        }
      } else if (view instanceof ViewGroup) {
        removeAllDividers((ViewGroup) view);
      }
    }
  }
}

答案 1 :(得分:0)

虽然我对这个答案有点迟,但是对于那些将来会怀疑的人。加入gradle

compile 'com.github.rey5137:material:1.2.2'

这是我见过的best library。用它。它包含您需要的所有信息。