如何查找编辑文本值是否以辅音开头?


本例演示了如何查找编辑文本值是否以辅音开头。

步骤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:gravity="center"
   android:layout_height="match_parent"
   tools:context=".MainActivity"
   android:orientation="vertical">
   <EditText
      android:id="@+id/edit_query"
      android:layout_width="match_parent"
      android:hint="Enter something"
      android:layout_height="wrap_content" />
   <Button
      android:id="@+id/buttonPanel"
      android:text="Click"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</LinearLayout>

在上面的代码中,我们使用了编辑文本和按钮视图来验证编辑文本数据是否以辅音开头。

步骤3 - 将以下代码添加到java/MainActivity.xml

package com.example.myapplication;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      final EditText edit_query = findViewById(R.id.edit_query);
      findViewById(R.id.buttonPanel).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            String data = edit_query.getText().toString();
            if (!data.isEmpty()) {
               data = data.substring(0, 1);
               if (data.equals("a") || data.equals("e") || data.equals("i") || data.equals("o") || data.equals("u"))
                  Toast.makeText(MainActivity.this, data + " is vowel", Toast.LENGTH_LONG).show();
               else
                  Toast.makeText(MainActivity.this, data + " is consonant", Toast.LENGTH_LONG).show();
            }
         }
      });
   }
}

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

点击这里下载项目代码

更新于:2019年7月30日

64 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告