如何在Android TextView中使用contains()方法?


本例演示了如何在Android TextView中使用contains()方法。

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

在上面的代码中,我们使用了名称作为EditText,当用户点击按钮时,它将获取数据并与字符串“tutorialspoint”进行比较。

步骤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().contains("tutorialspoint")));
               }
            } else {
               name.setError("Plz enter name");
            }
         }
      });
   }
}

让我们尝试运行您的应用程序。我假设您已将实际的Android移动设备连接到您的计算机。要从Android Studio运行应用程序,请打开项目的其中一个活动文件,然后单击运行  工具栏中的图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -

在以上结果中,输入字符串“tutorialspoint is best website”,它返回true,因为它包含字符串“tutorialspoint”。现在输入不包含“tutorialspoint”的其他字符串,它将返回false,如下所示:

点击这里下载项目代码

更新于:2019年7月30日

951 次浏览

开启你的职业生涯

完成课程获得认证

开始学习
广告