我有一个XML布局,有20-25个类似的行,用于设置不同的参数。这些行包含AutoCompleteTextView
和ImageButton
。只要在其中一个视图中设置了一个选项,就会调用一个方法在我的代码中设置变量,然后刷新所有视图。有三种方法可以设置每个变量... AutoCompleteTextView:
OnKeyListener,OnItemSelectedListener .... ImageButton:
OnClickListener
以下是其中一行的这一部分的示例:
pumpCountAutoText = new AutoCompleteTextView( this );
pumpCountAutoText.setHint( R.string.anti_pump_pump_count_hint );
pumpCountAutoText.setTextSize( 12.0f );
pumpCountAutoText.setLayoutParams( editLP );
pumpCountAutoText.setThreshold( 1 );
pumpCountAutoText.setId( 11001 );
pumpCountAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, pumpCountList);
pumpCountAutoText.setAdapter( pumpCountAdapter );
pumpCountAutoText.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
// if keydown and "enter" is pressed
if ((event.getAction() == KeyEvent.ACTION_DOWN)
&& (keyCode == KeyEvent.KEYCODE_ENTER)) {
String item = pumpCountAutoText.getText().toString();
hideSoftKeyboard( MoreParameters.this );
pumpCountAutoText.dismissDropDown();
if( hasRead ) {
if(pumpCountList.contains( item ) ) {
if( !( item.equals( " " ) ) ) {
int val = Integer.parseInt( item );
//Log.i( "pumpCountSpinner", Integer.toString( val ) );
RelayAPIModel.NativeCalls.SetParmJava( RelayAPIModel.PARM_PUMPCOUNT, val );
}
}
}
return true;
}
return false;
}
});
pumpCountAutoText.setOnItemClickListener( new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
hideSoftKeyboard( MoreParameters.this );
String item = pumpCountAutoText.getText().toString();
if( !( item.equals( " " ) ) ) {
int val = Integer.parseInt( item );
//Log.i( "pumpCountSpinner", Integer.toString( val ) );
RelayAPIModel.NativeCalls.SetParmJava( RelayAPIModel.PARM_PUMPCOUNT, val );
}
}
});
pumpCountDropdownButton = new ImageButton( this );
pumpCountDropdownButton.setLayoutParams( dropLP );
pumpCountDropdownButton.setId( 11002 );
pumpCountDropdownButton.setImageResource( R.drawable.arrow_down_float );
pumpCountDropdownButton.setOnClickListener( new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
AlertDialog.Builder ab=new AlertDialog.Builder(MoreParameters.this);
ab.setTitle( R.string.anti_pump_pump_count_hint );
ab.setItems( pumpCountList.toArray( new String[pumpCountList.size()]), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int pos ) {
String item = pumpCountList.get( pos );
if( !( item.equals( " " ) ) ) {
int val = Integer.parseInt( item );
RelayAPIModel.NativeCalls.SetParmJava( RelayAPIModel.PARM_PUMPCOUNT, val );
}
}
});
ab.show();
}
});
我的问题是,在设置了这些项目中的任何一项后,屏幕顶部的文本字段会自动聚焦并显示该视图的下拉菜单。这非常烦人。我想在任何视图中选择一个项目,而不是显示这些下拉列表。
我尝试了两件事:
1)我添加了AutoCompleteTextView.setCursorVisible(false);
2)我也试过这个:
specialCTAutoText.setFocusable( false );
specialCTAutoText.setFocusableInTouchMode( false );
specialCTAutoText.setText( temp );
specialCTAutoText.setFocusable( true );
specialCTAutoText.setFocusableInTouchMode( true );
当我在第二种方法中刷新所有视图时,我尝试了第二件事,这里没有显示。这很好用。但是,一旦我编辑了这三种方式中的一种文本视图,它仍会自动选择顶部的edittext视图。
我希望这很清楚,但任何澄清都需要我知道。
答案 0 :(得分:2)
但是,一旦我使用这三种方式之一编辑textview,它仍然会自动选择顶部的edittext视图。
尝试在“编辑文本视图中的一种方式”时,在某个其他小部件上调用requestFocus()
。