本文主要是介绍android editext设置超出字数后自定换行,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<EditTextandroid:gravity="top"android:scrollHorizontally="false"android:inputType="textMultiLine"android:background="@null"android:textSize="14.0sp"android:hint="请填写票种说明"android:id="@+id/content"app:layout_marginLeftPercent="4.8%w"android:textColorHint="#939393"android:layout_width="match_parent"android:layout_height="match_parent" />
设置首行缩进,光标在文字后:
input.setText("\u3000\u3000"+SaveUserMessage.getUserIntro(UpdateAgencyIntr.this));input.setSelection(input.getText().length());
这篇关于android editext设置超出字数后自定换行的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!