如何在 Android 文字檢視中使用 compareTo()?


本示例演示如何在 Android 文字檢視中使用 compareTo()。

步驟 1 − 在 Android Studio 中建立一個新專案,轉到檔案 ⇒ 新專案,並填寫所有必需的詳細資訊以建立一個新專案。

步驟 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>

在上面的程式碼中,我們已使用文字框獲取名稱,當用戶單擊按鈕時,它將獲取資料並與字串 sairam 進行比較。

步驟 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) {
                  text.setText(String.valueOf(name.getText().toString().compareTo("sairam")));
               }
            } else {
               name.setError("Plz enter name");
            }
         }
      });
   }
}

我們來嘗試執行你的應用程式。我假設你已將實際的 Android 移動裝置連線到你的計算機。要從 Android Studio 執行應用程式,請開啟一個專案活動檔案,然後單擊工具欄中的執行  圖示。選擇你的移動裝置作為選項,然後檢查將顯示你預設螢幕的移動裝置 −

在上面的結果中,輸入的字串不相等,a 比 s 小 18 倍。現在在 editext 中輸入 sairam,它返回 0 表示為真,如下所示 −

點選 此處 下載專案程式碼

更新時間: 2019 年 7 月 30 日

223 次瀏覽

開啟你的 職業生涯

完成課程,獲得認證

開始
廣告