我将 EditText 的 InputType 设置为 TYPE_NULL :
editText.setInputType(InputType.TYPE_NULL);
我可以将它设置为 TYPE_NULL,它可以工作!但是如果我想将 InputType 设置为别的东西,比如 TYPE_CLASS_TEXT,它就不起作用了!
如何在代码中动态更改它?喜欢 TYPE_NULL,然后是 TYPE_CLASS_TEXT,然后又是 TYPE_NULL?
我将 EditText 的 InputType 设置为 TYPE_NULL :
editText.setInputType(InputType.TYPE_NULL);
我可以将它设置为 TYPE_NULL,它可以工作!但是如果我想将 InputType 设置为别的东西,比如 TYPE_CLASS_TEXT,它就不起作用了!
如何在代码中动态更改它?喜欢 TYPE_NULL,然后是 TYPE_CLASS_TEXT,然后又是 TYPE_NULL?
为此,您首先必须更改INPUT TYPE,然后动态添加文本,如下所示.....
editText.setInputType(InputType.TYPE_CLASS_TEXT);
editText.setText("Hello");
// Try this one
**activity_main1.xml**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical" >
<EditText
android:id="@+id/txtValue"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/btnClick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enable Input" />
</LinearLayout>
主要活动1
public class MainActivity1 extends Activity {
private Button btnClick;
private TextView txtValue;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main1);
txtValue = (TextView)findViewById(R.id.txtValue);
btnClick = (Button)findViewById(R.id.btnClick);
txtValue.setInputType(InputType.TYPE_NULL);
btnClick.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
if(txtValue.getInputType()==InputType.TYPE_NULL){
txtValue.setInputType(InputType.TYPE_CLASS_TEXT);
txtValue.invalidate();
btnClick.setText("Disable Input");
}else{
txtValue.setInputType(InputType.TYPE_NULL);
txtValue.invalidate();
btnClick.setText("Enable Input");
}
}
});
}
}