如何在安卓文本视图中使用 toUpperCase()?


此示例演示如何在安卓文本视图中使用 toUpperCase()。

第 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>

在上面的代码中,我们已将名字设为编辑文本,当用户点击按钮,此按钮会获取数据并将其转换为大写字母。

第 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 touppercase = name.getText().toString().toUpperCase();
                  text.setText(String.valueOf(touppercase));
               }
            } else {
               name.setError("Plz enter name");
            }
         }
      });
   }
}

来尝试运行你的应用程序。我假设你已将真正的安卓移动设备与你的计算机相连接。从安卓工作室运行应用程序,打开你的一个项目活动文件,并点击工具栏中的运行 iconnbsp; 。选择你的移动设备作为选项,然后查看你移动设备上显示的默认屏幕 −

在上面的结果中,输入字符串“krishna”(全部小写字母),它会返回大写字母,如 KRISHNA。

点击 此处 下载项目代码

更新于: 2019-07-30

476 人浏览

开启您的 职业生涯

完成课程获得认证

开始学习
广告