Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将光标放在EditText. 谁能告诉我该怎么做?我正在尝试使用
EditText
et.setSelection(2);
但它不工作。
尝试像这样使用..在设置光标位置之前,开头必须有一些文本没有文本,这就是它不起作用的原因..所以试试这样..
et.setText(" "); et.setSelection(2);
使用 android:paddingLeft="2dp"