4

我在布局 xml 文件中有一个 TextView,如下所示:

<TextView
   android:id="@+id/viewId"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/string_id" />

我的字符串是这样指定的:

<string name="string_id">text</string>

是否可以在没有 java 代码的情况下使其显示“文本”而不​​是“文本” ?
(并且不改变字符串本身)

4

4 回答 4

6

不,但是您可以创建一个简单的 CustomView 扩展 TextView 覆盖 setText 并将第一个字母大写,正如 Ahmad 所说的那样,并在您的 XML 布局中使用它。

import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;

public class CapitalizedTextView extends TextView {

    public CapitalizedTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void setText(CharSequence text, BufferType type) {
        if (text.length() > 0) {
            text = String.valueOf(text.charAt(0)).toUpperCase() + text.subSequence(1, text.length());
        }
        super.setText(text, type);
    }
}
于 2013-09-04T22:29:59.993 回答
3

我使用Hyrum Hammon的答案设法将所有单词大写。

public class CapitalizedTextView extends TextView {

    public CapitalizedTextView( Context context, AttributeSet attrs ) {
        super( context, attrs );
    }

    @Override
    public void setText( CharSequence c, BufferType type ) {

        /* Capitalize All Words */
        try {
            c = String.valueOf( c.charAt( 0 ) ).toUpperCase() + c.subSequence( 1, c.length() ).toString().toLowerCase();
            for ( int i = 0; i < c.length(); i++ ) {
                if ( String.valueOf( c.charAt( i ) ).contains( " " ) ) {
                    c = c.subSequence( 0, i + 1 ) + String.valueOf( c.charAt( i + 1 ) ).toUpperCase() + c.subSequence( i + 2, c.length() ).toString().toLowerCase();
                }
            }
        } catch ( Exception e ) {
            // String did not have more than + 2 characters after space.
        }
        super.setText( c, type );
    }

}
于 2014-10-07T13:02:49.953 回答
2

作为 Kotlin 扩展函数

 fun String.capitalizeFirstCharacter(): String {
        return substring(0, 1).toUpperCase() + substring(1)
    }

textview.text = title.capitalizeFirstCharacter()
于 2019-03-28T10:07:37.887 回答
0

在活动中尝试此代码:

String userName = "name";
String cap = userName.substring(0, 1).toUpperCase() + userName.substring(1);

希望这对您有所帮助。

于 2018-01-28T21:18:55.240 回答