android:inputType="textCapSentences"
是为EditText
。TextView
有等效功能吗?
android:inputType="textCapSentences"
是为EditText
。TextView
有等效功能吗?
// try this
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/Widget.TextView"
android:text="hi how are you"
android:background="@android:color/transparent"
android:inputType="textCapSentences"/>
取决于Android API,你可以这样做,但我已经尝试过但它不起作用,所以我一直在搜索,最好的方法是我们必须自定义TextView
类:让试试这个
编辑:或者你可以使用EditText
哪个不能editable
:)格鲁克!