如果想对EditText设置默认值,在java代码中使用setText函数是不行的,需要在layout文件中设置“text变量”,如下所示设置默认值为“192.168.1.1”:文章来源地址https://www.toymoban.com/news/detail-680363.html
<EditText
android:id="@+id/car1_ip_edit"
android:layout_width="160dp"
android:layout_height="50dp"
android:layout_marginLeft="-28dp"
android:layout_toRightOf="@id/car1_ip_text"
android:inputType="text"
android:text="192.168.1.1"
android:maxLength="20"
android:textColor="@color/black"
android:textSize="17sp" />
文章来源:https://www.toymoban.com/news/detail-680363.html
到了这里,关于Android studio中EditText设置默认值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!