如何在 Android 文字视图中使用 split()?
本例演示如何在 Android 文字视图中使用 split()
步骤 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>
在上例中,我们使用了编辑文本作为 name 时,当用户点击按钮后,它将获取数据并使用空格正则表达式对数据进行分隔。
步骤 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) { String[] replace = name.getText().toString().split("\s"); text.setText(String.valueOf(replace[1])); } } else { name.setError("Plz enter name"); } } }); } }
我们尝试运行你的应用程序。我假设你已将你的真实安卓移动设备连接到电脑。要从 android studio 运行该应用程序,打开你的一个项目活动文件并单击工具栏中的 图标。选择你的移动设备作为选项,然后检查移动设备上显示的默认屏幕 −
以上结果中,输入字符串为“Krishna sai sai”。它按空格进行分隔并返回第 1 个索引值。
点击 此处 下载项目代码
广告