我在代码后面尝试了EditText的动态提示。但出错时无法理解。 您可以稍后查看代码
EditText editTextAddres = FindViewById
或在Java中
EditText
editTextAddres=FindViewById<EditText(Resource.Id.entereventeditTextAddres);
editTextAddres.hint="EnterCity";//Error
答案 0 :(得分:0)
尝试EditText.Hint = "Your text"
答案 1 :(得分:0)
EditText edtText;
edtText = findViewById(R.id.edtText);
edtText.setHint("Here goes your Hint");