3
 android:inputType="textCapSentences"

是为EditTextTextView有等效功能吗?

4

2 回答 2

1
// 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"/>
于 2013-10-11T05:37:23.180 回答
0

取决于Android API,你可以这样做,但我已经尝试过但它不起作用,所以我一直在搜索,最好的方法是我们必须自定义TextView类:让试试这个
编辑:或者你可以使用EditText哪个不能editable:)格鲁克!

于 2014-03-17T10:49:26.737 回答