以下是我的代码:
(?:(?=(?:(?<A>A)|(?<B>B)|(?<C>C)){3}(?<-A>)(?<-B>)(?<-C>))..){3}.
当我点击文本框时,它会在最初聚焦然后丢失。我真的不知道这里发生了什么。任何帮助将不胜感激
答案 0 :(得分:0)
在你的.xml文件上试试这个:
<EditText
android:paddingLeft="6dp"
android:id="@+id/editComment"
android:minHeight="50dp"
style="@style/WhiteNormalText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_comment_textbox"
android:textColor="@color/white"
android:textColorHint="@color/white"
android:hint="Post your comment..." />
您的活动:
EditText editComment = (EditText) findViewById(R.id.editComment);
editComment.setFocusableInTouchMode(true);
希望这可以帮助你