gpt4 book ai didi

java - Android handle 软回车键

转载 作者:行者123 更新时间:2023-12-01 09:57:26 25 4
gpt4 key购买 nike

我正在 Android 上构建一个非常简单的列表应用程序,其中有一个用于输入的编辑文本、一个用于存储已保存输入的 ListView 以及一个用于将文本从编辑文本推送到 ListView 的按钮。现在我正在尝试处理错误键,因此它不仅不会在按下时创建新行,而且当我单击 Enter 按钮时它会将文本发送到 ListView 。

我将 edittext 设置为单行以防止出现新行,并在 edittext 中添加了一个 onEditorActionListener 来处理按键事件。这是我的代码。

activity_main.xml

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myEditText"
android:imeOptions="actionSearch|actionGo"
android:hint="Enter a new item"
android:singleLine="true"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/myImageButton"
android:layout_toStartOf="@+id/myImageButton"/>

MainActivity.java

public class MainActivity extends AppCompatActivity {
// Declare our View variables
private ListView mListView;
private EditText mEditText;
private Button mDoneButton;
private ImageButton mImageButton;
private static final String TAG = MainActivity.class.getSimpleName();

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// Assign the view from the layout file to the corresponding variables
mListView = (ListView) findViewById(R.id.myListView);
mEditText = (EditText) findViewById(R.id.myEditText);
mDoneButton = (Button) findViewById(R.id.myDoneButton);
mImageButton = (ImageButton) findViewById(R.id.myImageButton);


// Listview items adapter
items = new ArrayList<>();
readItems();
itemsAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, items);
mListView.setAdapter(itemsAdapter);

//setup enter listener
mEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
//handle search key click
onAddItem(v);
Log.d(TAG, "Handled!");
return true;
}
if (actionId == EditorInfo.IME_ACTION_GO) {
//Handle go key click
onAddItem(v);
return true;
}
return handled;
}
});
}

//Add item to list from either the button or enter
public void onAddItem(View v) {
String itemText = mEditText.getText().toString();
itemsAdapter.add(itemText);
mEditText.setText("");

writeItems();
}

该代码给我带来了麻烦。我什至没有从该 log.d 中得到任何信息,但代码中的所有其他内容(除了这个监听器)都按预期工作。

        //setup enter listener
mEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
//handle search key click
onAddItem(v);
Log.d(TAG, "Handled!");
return true;
}
if (actionId == EditorInfo.IME_ACTION_GO) {
//Handle go key click
onAddItem(v);
return true;
}
return handled;
}
});

最佳答案

为了使用 IME_ACTION_SEARCH 和其他功能,您还需要在 xml 布局中指定这些操作:

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myEditText"
android:imeOptions="actionSearch|others"
...
/>

关于java - Android handle 软回车键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37080742/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com