样式android.support.v7.preference.SeekBarPreference

时间:2017-06-22 18:30:09

标签: android xamarin.android

首先,我是编程Xamarin和Android的新手。我创建了一个SeekbarPreference,但是它们的布局方式并没有正确显示。价值从框中下降(见图)。

enter image description here

我的styles.xml:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
   <style name="MyTheme" parent="MyTheme.Base">

  </style>

  <style name="MyTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">#EC6A1E</item>
    <item name="colorAccent">#EC6A1E</item>
    <item name="toolbarStyle">@style/custom_toolbar</item>
    <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material.Fix</item>
  </style>

  <style name="custom_toolbar" parent="@style/Widget.AppCompat.Toolbar">
        <item name="titleTextColor">#FFFFFF</item>
  </style>

  <style name="PreferenceThemeOverlay.v14.Material.Fix"  parent="PreferenceThemeOverlay.v14.Material">
    <item name="seekBarPreferenceStyle">@style/Preference.SeekBarPreference.Fix</item>
  </style>

  <style name="Preference.SeekBarPreference.Fix">
  </style>
</resources>

这是我的settings.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.preference.PreferenceScreen
    xmlns:android="http://schemas.android.com/apk/res/android">
  <android.support.v7.preference.SeekBarPreference
          android:id="@+id/preference_range_seek_bar"
          android:layout_height="wrap_content"
          android:key="range"
          android:title="Range"
          android:summary="Here you can set the range of your location"
          android:max="10000"
          android:defaultValue="500" />
    <android.support.v7.preference.SeekBarPreference
          android:key="favRange"
          android:title="Favorite Range"
          android:summary="Here you can set the range of your Favorite location"
          android:max="10000"
          android:defaultValue="500" />
    <android.support.v7.preference.Preference android:title="Title" android:summary="This is the summary">
    </android.support.v7.preference.Preference>

</android.support.v7.preference.PreferenceScreen>

我不明白的是如何找到我可以在SeekBarPreference上使用哪些xml属性来解决这个问题。当我查看Googles文档时,我在这个SeekBarPreference上找不到xml属性的描述。

我知道我的主题很模糊,因为我玩了很多。但是当我开始工作时,我会调整它。

希望有人可以帮助我,或者有一个例子......

1 个答案:

答案 0 :(得分:0)

陷入同样的​​问题。在这里,您将使用解决方案,在运行API 25的模拟器上进行测试:

步骤1,创建一个扩展SeekBarPreference的新类

public class CustomSeekBarPreference extends SeekBarPreference {
  private TextView mSeekBarValueTextView;

  public CustomSeekBarPreference(Context context,
      AttributeSet attributeSet,
      int i, int i1) {
    super(context, attributeSet, i, i1);
  }

  public CustomSeekBarPreference(Context context, AttributeSet attributeSet, int i) {
    super(context, attributeSet, i);
  }

  public CustomSeekBarPreference(Context context, AttributeSet attributeSet) {
    super(context, attributeSet);
  }

  public CustomSeekBarPreference(Context context) {
    super(context);
  }

  @Override
  public void onBindViewHolder(PreferenceViewHolder preferenceViewHolder) {
    super.onBindViewHolder(preferenceViewHolder);
    mSeekBarValueTextView = (TextView) preferenceViewHolder.findViewById(android.support.v7.preference.R.id.seekbar_value);
    if (mSeekBarValueTextView != null) {
      LayoutParams layoutParams = mSeekBarValueTextView.getLayoutParams();
      layoutParams.height = LayoutParams.WRAP_CONTENT;
      mSeekBarValueTextView.setLayoutParams(layoutParams);
    }
  }
}

在您的preferences.xml中,将SeekBarPreference类名替换为自定义类名。

<com.google.xxx.view.CustomSeekBarPreference
        android:key="cacheLimit"
        android:title="@string/setting_cache_limit_title"
        android:dependency="enableCaching"
        android:defaultValue="20"
        android:max="40"/>