gpt4 book ai didi

Android:将字符串的首字母转换为小写

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:49:19 25 4
gpt4 key购买 nike

我正在寻找一种将字符串的第一个字母转换为小写字母的方法。我正在使用的代码从数组中提取一个随机字符串,在 TextView 中显示该字符串,然后使用它来显示图像。数组中的所有字符串的首字母都大写,但存储在应用程序中的图像文件当然不能有大写字母。

String source = "drawable/"
//monb is randomly selected from an array, not hardcoded as it is here
String monb = "Picture";

//I need code here that will take monb and convert it from "Picture" to "picture"

String uri = source + monb;
int imageResource = getResources().getIdentifier(uri, null, getPackageName());
ImageView imageView = (ImageView) findViewById(R.id.monpic);
Drawable image = getResources().getDrawable(imageResource);
imageView.setImageDrawable(image);

谢谢!

最佳答案

    if (monb.length() <= 1) {
monb = monb.toLowerCase();
} else {
monb = monb.substring(0, 1).toLowerCase() + monb.substring(1);
}

关于Android:将字符串的首字母转换为小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7535630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com