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

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

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

AutoCompleteTextView.setDropDownWidth介绍

暂无

代码示例

代码示例来源:origin: rey5137/material

/**
 * <p>Sets the current width for the auto-complete drop down list. This can
 * be a fixed width, or {@link ViewGroup.LayoutParams#MATCH_PARENT} to fill the screen, or
 * {@link ViewGroup.LayoutParams#WRAP_CONTENT} to fit the width of its anchor view.</p>
 * <p>Only work when autoComplete mode is {@link #AUTOCOMPLETE_MODE_SINGLE} or {@link #AUTOCOMPLETE_MODE_MULTI}</p>
 *
 * @param width the width to use
 *
 * @attr ref android.R.styleable#AutoCompleteTextView_dropDownWidth
 */
public void setDropDownWidth(int width) {
  if(mAutoCompleteMode == AUTOCOMPLETE_MODE_NONE)
    return;
  ((AutoCompleteTextView)mInputView).setDropDownWidth(width);
}

代码示例来源:origin: rey5137/material

v.setDropDownHeight(a.getLayoutDimension(attr, ViewGroup.LayoutParams.WRAP_CONTENT));
else if(attr == R.styleable.AutoCompleteTextView_android_dropDownWidth)
  v.setDropDownWidth(a.getLayoutDimension(attr, ViewGroup.LayoutParams.WRAP_CONTENT));
else if(attr == R.styleable.AutoCompleteTextView_android_dropDownHorizontalOffset)
  v.setDropDownHorizontalOffset(a.getDimensionPixelSize(attr, 0));

代码示例来源:origin: Calsign/APDE

public void run() {
    keystoreFile.setDropDownWidth(keystorePassword.getWidth());
  }
});

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

@Override
  public void onGlobalLayout() {
    if (Build.VERSION.SDK_INT < 16) {
      chipLayout.getViewTreeObserver().removeGlobalOnLayoutListener(this);
    } else {
      chipLayout.getViewTreeObserver().removeOnGlobalLayoutListener(this);
    }
    if(chipLayout.getWidth() < dropDownWidth){
      autoCompleteTextView.setDropDownWidth(dropDownWidth);
    }else{
      autoCompleteTextView.setDropDownWidth(chipLayout.getWidth());
    }
  }
});

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

}else{
  if(chipLayout.getWidth() < dropDownWidth){
    autoCompleteTextView.setDropDownWidth(dropDownWidth);
  }else{
    autoCompleteTextView.setDropDownWidth(chipLayout.getWidth());

相关文章

AutoCompleteTextView类方法