进入页面时,设置特定的edittext有光标闪烁

时间:2015-02-26 09:41:46

标签: android android-layout android-edittext android-cursor

问题是有一个edittext我想设置它默认有一个光标就可以了(但没有聚焦和隐藏键盘)

          android:textCursorDrawable="@null"
                android:cursorVisible="true"



               <EditText
                    android:id="@+id/comment"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_margin="1dp"
                    android:background="@drawable/comment"
                    android:hint="@string/cmt"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:textColor="#AAACAD"
                    android:textColorHint="#AAACAD"
                    android:textCursorDrawable="@null"
                    android:cursorVisible="true"
                    android:textSize="15sp" />

但不起作用。请帮忙。非常感谢

1 个答案:

答案 0 :(得分:5)

@ user782104
您可以在声明该活动的android:windowSoftInputMode="stateHidden"文件中使用此属性AndroidManifest.xml

所以这种方式光标将在edittext中,但键盘不会显示。