在Android布局xml文件中大写TextView的第一个字母

时间:2013-09-04 21:41:31

标签: android textview capitalize

我在布局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 个答案:

答案 0 :(得分: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);
    }
}

答案 1 :(得分: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 );
    }

}

答案 2 :(得分:0)

在活动中尝试此代码:

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

希望这会对你有所帮助。

答案 3 :(得分:0)

作为Kotlin扩展功能

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

textview.text = title.capitalizeFirstCharacter()