本文整理汇总了Java中android.widget.EditText.getContext方法的典型用法代码示例。如果您正苦于以下问题:Java EditText.getContext方法的具体用法?Java EditText.getContext怎么用?Java EditText.getContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.EditText
的用法示例。
在下文中一共展示了EditText.getContext方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testTextInputMeasurements
import android.widget.EditText; //导入方法依赖的package包/类
/**
* Test that the actual height of the text input is not dependant on the font size of the text
* within.
*/
public void testTextInputMeasurements() {
View textInputViewHeightSet = getViewByTestId("textInput1");
EditText textInputViewNoHeight = getViewByTestId("textInput2");
int expectedHeight = Math.round(PixelUtil.toPixelFromDIP(30));
assertEquals(expectedHeight, textInputViewHeightSet.getHeight());
EditText editText = new EditText(textInputViewNoHeight.getContext());
editText.setTextSize(
TypedValue.COMPLEX_UNIT_PX,
(float) Math.ceil(PixelUtil.toPixelFromSP(21.f)));
editText.setPadding(0, 0, 0, 0);
int measureSpec = View.MeasureSpec.makeMeasureSpec(
ViewGroup.LayoutParams.WRAP_CONTENT,
View.MeasureSpec.UNSPECIFIED);
editText.measure(measureSpec, measureSpec);
assertEquals(editText.getMeasuredHeight(), textInputViewNoHeight.getHeight());
}
示例2: selectPreset
import android.widget.EditText; //导入方法依赖的package包/类
private void selectPreset(EditText editText, CharSequence[] presets) {
ListPopupWindow menu = new ListPopupWindow(editText.getContext());
menu.setAnchorView(editText);
menu.setAdapter(new ArrayAdapter<>(this,
R.layout.activity_message_format_settings_preset, presets));
menu.setOnItemClickListener((AdapterView<?> parent, View view, int position, long id) -> {
editText.setText(presets[position]);
menu.dismiss();
});
menu.show();
}
示例3: EmojiPagerAdapter
import android.widget.EditText; //导入方法依赖的package包/类
public EmojiPagerAdapter(EditText editText) {
this.editText = editText;
this.context = editText.getContext();
init();
}