编程语言
首页 > 编程语言> > android – 以编程方式设置textview焦点颜色/更改主题中的焦点颜色

android – 以编程方式设置textview焦点颜色/更改主题中的焦点颜色

作者:互联网

1)是否可以以编程方式设置TextView的颜色?如果是这样,最简单的方法是什么?

我想要其他的其他东西,默认4.0浅蓝色.

我发现并尝试了以下代码但没有成功:

StateListDrawable states = new StateListDrawable();
states.addState(new int[] {android.R.attr.state_pressed}, new ColorDrawable(0x1A000000));
states.addState(new int[] {android.R.attr.state_focused}, new ColorDrawable(0x1A000000));

if(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
    tv.setBackgroundDrawable(states);
} else {
    tv.setBackground(states);
}

我不希望涉及任何XML.

2)我可以更改主题中的焦点颜色吗?如果有,怎么样?

XML在这里显然很好.

解决方法:

您可以使用ColorStateList以编程方式指定状态颜色.

    int[][] states = new int[][] {
        new int[] { android.R.attr.state_pressed}, // pressed
        new int[] { android.R.attr.state_focused}, // focused
        new int[] { android.R.attr.state_enabled} // enabled
    };

    int[] colors = new int[] {
        Color.parseColor("#008000"), // green
        Color.parseColor("#0000FF"), // blue
        Color.parseColor("#FF0000")  // red
    };

    ColorStateList list = new ColorStateList(states, colors);
    textView.setTextColor(list);        
    textView.setClickable(true);
    textView.setFocusableInTouchMode(true);

标签:android,android-layout,android-view,android-textview
来源: https://codeday.me/bug/20190725/1530674.html