如何在Android中从字符串数组元素中删除所有公共字符?
此示例演示了如何在Android中从字符串数组元素中删除所有公共字符。
步骤 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"> <TextView android:id="@+id/text" android:textSize="30sp" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
在上面的代码中,我们使用了一个 TextView 来显示没有公共字符元素的数组。
步骤 3 - 将以下代码添加到 src/MainActivity.java 中
package com.example.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.widget.TextView; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.stream.Collectors; public class MainActivity extends AppCompatActivity { TextView textView; String[] strArray = {"aaa", "aaa", "bbb", "ccc", "bbb"}; @RequiresApi(api = Build.VERSION_CODES.P) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); HashMapString, Integer> hashMap = new HashMa<p<>(); HashSet<String> hashSet = new HashSet<>(); for (int i = 0; i < strArray.length; i++) { if (hashMap.containsKey(strArray[i])) { hashMap.put(strArray[i], hashMap.get(strArray[i]) + 1); } else { hashMap.put(strArray[i], 1); } } for (String name : hashMap.keySet()) { String key = name.toString(); String value = hashMap.get(name).toString(); hashSet.add(key); } HashMap<Character, Integer> hashMap1 = new HashMap<>(); HashSet<String> hashSet1 = new HashSet<>(); List<String>list=new ArrayList<>(hashSet); for (String name : list) { char[] chars=name.toCharArray(); for (int i = 0; i < chars.length; i++) { if (hashMap1.containsKey(chars[i])) { hashMap1.put(chars[i],i + 1); } else { hashMap1.put(chars[i], 1); } } for (Character charValue : hashMap1.keySet()) { String key = charValue.toString(); hashSet1.add(key); } } TextView textView = findViewById(R.id.text); textView.setText(hashSet1.toString()); } }
让我们尝试运行您的应用程序。我假设您已将您的实际 Android 移动设备连接到您的电脑。要从 Android Studio 运行应用程序,请打开您的项目中的一个 Activity 文件,然后点击工具栏中的运行 图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -
点击 此处 下载项目代码
广告