如何使用支持库按代码(在AlertDialog内部)使用Material Design在Material Design中创建TextView?
我的代码(不起作用):
AlertDialog.Builder alert = new AlertDialog.Builder(this, R.style.AppCompatAlertDialogStyle);
final TextInputLayout input = new TextInputLayout(this);
input.addView(new EditText(this));
input.getEditText().setHint(R.string.enter_pass);
alert.setView(input);
答案 0 :(得分:2)
我解决了。 它应该是
input.setHint(getString(R.string.enter_pass));
不
input.getEditText().setHint(R.string.enter_pass);