当前位置:   article > 正文

Preference-自定义PreferenceCategory_preferencecategory自定义

preferencecategory自定义

1. Preference-自定义PreferenceCategory

修改字体大小、样式、颜色

2. 参考代码

package com.android.fadi.powersave.view;

import android.content.Context;
import android.graphics.Color;
import android.graphics.Typeface;
import android.preference.PreferenceCategory;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.android.fadi.powersave.util.ScreenUtils;

public class DamiPreferenceCategory extends PreferenceCategory {

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

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

    public DamiPreferenceCategory(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onBindView(View view) {
        super.onBindView(view);

        view.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, ScreenUtils.dpToPxInt(getContext(), 32)));
        if (view instanceof TextView) {
            TextView tv = (TextView) view;
            tv.setBackgroundColor(Color.parseColor("#fafafa"));
            tv.setTextColor(Color.parseColor("#009688"));// 字体颜色
            tv.setSingleLine(true);
            tv.setPadding(tv.getPaddingLeft(), 0, tv.getPaddingLeft(), 0);
            tv.setGravity(Gravity.CENTER_VERTICAL);
            tv.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.NORMAL));// 字体风格
            tv.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_START);
        }
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/152953
推荐阅读
相关标签
  

闽ICP备14008679号