如何在安卓文字框中使用 indexOf()?
此示例演示如何在 Android 文字框中使用 indexOf()。
步驟 1 − 在 Android Studio 中建立一個新專案,轉到 File ⇒ New Project 並填寫所有必需的詳細資訊以建立一個新專案。
步驟 2 − 將以下程式碼新增到 res/layout/activity_main.xml 中。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" tools:context=".MainActivity"> <EditText android:id="@+id/name" android:layout_width="match_parent" android:hint="Enter name" android:layout_height="wrap_content" /> <Button android:id="@+id/click" android:text="Click" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/textview" android:layout_width="wrap_content" android:textSize="25sp" android:layout_height="wrap_content" /> </LinearLayout>
在以上程式碼中,我們將名稱作為編輯文字,當用戶單擊按鈕時,它將獲取資料並返回 “sai” 的索引。
步驟 3 − 將以下程式碼新增到 src/MainActivity.java 中
package com.example.myapplication; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { EditText name; Button button; TextView text; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); name = findViewById(R.id.name); button = findViewById(R.id.click); text = findViewById(R.id.textview); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!name.getText().toString().isEmpty()) { if (name.getText().toString().length() >= 0) { int index = name.getText().toString().indexOf("sai"); text.setText(String.valueOf(index)); } } else { name.setError("Plz enter name"); } } }); } }
讓我們嘗試執行你的應用程式。我假設你已經將你的實際 Android 移動裝置連線到了電腦。要從 Android Studio 執行應用程式,請開啟其中一個專案的活動檔案,然後從工具欄中單擊執行 圖示。選擇你的移動裝置作為選項,然後檢視將顯示你的預設螢幕的移動裝置 −
在以上結果中,輸入字串 “Krishna sai”,它返回 sai 的索引為 8。
單擊 此處 下載專案程式碼
廣告