要獲取 Android 中輸入框的內容,您可以按照以下步驟進行操作:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
EditText editText = findViewById(R.id.editText);
String content = editText.getText().toString();
在這個例子中,我們使用 findViewById()
方法根據控件的 ID 來獲取該 EditText 控件的實例。然后,我們使用 getText()
方法獲取輸入框中的內容,并使用 toString()
方法將其轉換為字符串類型的數據。
content
來訪問獲取到的輸入框內容,可以根據需要進行后續處理。請注意,以上代碼只是一個示例,您可以根據實際情況進行修改和適應。