android.widget.AutoCompleteTextView.setBackgroundColor()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(132)

本文整理了Java中android.widget.AutoCompleteTextView.setBackgroundColor()方法的一些代码示例,展示了AutoCompleteTextView.setBackgroundColor()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AutoCompleteTextView.setBackgroundColor()方法的具体详情如下:
包路径:android.widget.AutoCompleteTextView
类名称:AutoCompleteTextView
方法名:setBackgroundColor

AutoCompleteTextView.setBackgroundColor介绍

暂无

代码示例

代码示例来源:origin: aa112901/remusic

@Override
public void setBackgroundColor(int color) {
  if (mBackgroundHelper != null) {
    mBackgroundHelper.setBackgroundColor(color);
  } else {
    super.setBackgroundColor(color);
  }
}

代码示例来源:origin: AmaldevTA/ChipLayout

private AutoCompleteTextView createAutoCompleteTextView(Context context) {
  final LayoutParams lparamsTextView = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  lparamsTextView.setMargins(0, 0, 10, 0);
  lparamsTextView.gravity = Gravity.CENTER;
  final AutoCompleteTextView autoCompleteTextView = new AutoCompleteTextView(context);
  autoCompleteTextView.setBackgroundColor(Color.parseColor("#00FFFFFF"));
  autoCompleteTextView.setLayoutParams(lparamsTextView);
  autoCompleteTextView.setHint(" ");
  autoCompleteTextView.setPadding(10,0,10,10);
  autoCompleteTextView.setSingleLine(true);
  autoCompleteTextView.setTextColor(textColor);
  autoCompleteTextView.setHintTextColor(hintColor);
  autoCompleteTextView.setCursorVisible(true);
  return autoCompleteTextView;
}

相关文章

AutoCompleteTextView类方法