如何隐藏键盘上的回车键
我有一个包含四个编辑文本的活动,我想在用户完成使用四个编辑文本之一时隐藏键盘。如果我单击键盘上的 Enter,它将聚焦另一个编辑文本,并且键盘仍然保留,但我需要隐藏键盘,因此只使用一个编辑文本,而不一定使用另一个。 这是 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:background="@drawable/sfondo">
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="match_parent" android:layout_height="wrap_content">
<ImageButton android:id="@+id/backPersonalizza"
android:src="@drawable/back" android:background="@null"
android:layout_marginTop="10dip" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_marginLeft="5dp"></ImageButton>
<TextView android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@android:color/black" android:id="@+id/testoSuggerimenti"
android:text="Personalizza il testo e le icone. Clicca su una delle icone e scegli l'immagine preferita"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginRight="5dp"
></TextView>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout2"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:orientation="vertical" android:layout_marginTop="20dp">
<LinearLayout android:id="@+id/linearLayout3"
android:layout_height="wrap_content" android:layout_width="match_parent">
<EditText android:layout_height="40dp" android:id="@+id/editT1"
android:layout_width="115dp" android:layout_marginLeft="32dp"
android:layout_marginRight="25dp" android:gravity="center"
android:ellipsize="end" android:singleLine="true">
<requestFocus></requestFocus>
</EditText>
<EditText android:layout_height="40dp" android:id="@+id/editT2"
android:layout_width="115dp" android:layout_marginRight="10dp"
android:gravity="center" android:ellipsize="end"
android:layout_marginLeft="10dp" android:singleLine="true"></EditText>
</LinearLayout>
<LinearLayout android:layout_weight="1" android:id="@+id/linearLayout4"
android:layout_height="match_parent" android:layout_width="wrap_content">
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto1"
android:id="@+id/tastoMod1" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto2"
android:id="@+id/tastoMod2" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
</LinearLayout>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout5"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout android:id="@+id/linearLayout6"
android:layout_height="wrap_content" android:layout_width="match_parent">
<EditText android:layout_height="40dp" android:id="@+id/editT3"
android:layout_width="115dp" android:layout_marginLeft="32dp"
android:layout_marginRight="25dp" android:gravity="center"
android:ellipsize="end" android:singleLine="true"></EditText>
<EditText android:layout_height="40dp" android:id="@+id/editT4"
android:layout_width="115dp" android:layout_marginRight="30dp"
android:gravity="center" android:ellipsize="end" android:singleLine="true"
android:layout_marginLeft="10dp"></EditText>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout7"
android:layout_height="wrap_content" android:layout_width="match_parent">
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto3"
android:id="@+id/tastoMod3" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto4"
android:id="@+id/tastoMod4" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
</LinearLayout>
</LinearLayout>
你能帮助我吗?
i have an activity with four edittext and i want to hide keyboard when users finish to use one of the four edittext. if i click enter on keyboard, it will focus another edittext and keyboard still remain, but i need to hide keyboard, so to use only one edittext and not necessarily the other.
This is xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:background="@drawable/sfondo">
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="match_parent" android:layout_height="wrap_content">
<ImageButton android:id="@+id/backPersonalizza"
android:src="@drawable/back" android:background="@null"
android:layout_marginTop="10dip" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_marginLeft="5dp"></ImageButton>
<TextView android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@android:color/black" android:id="@+id/testoSuggerimenti"
android:text="Personalizza il testo e le icone. Clicca su una delle icone e scegli l'immagine preferita"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginRight="5dp"
></TextView>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout2"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:orientation="vertical" android:layout_marginTop="20dp">
<LinearLayout android:id="@+id/linearLayout3"
android:layout_height="wrap_content" android:layout_width="match_parent">
<EditText android:layout_height="40dp" android:id="@+id/editT1"
android:layout_width="115dp" android:layout_marginLeft="32dp"
android:layout_marginRight="25dp" android:gravity="center"
android:ellipsize="end" android:singleLine="true">
<requestFocus></requestFocus>
</EditText>
<EditText android:layout_height="40dp" android:id="@+id/editT2"
android:layout_width="115dp" android:layout_marginRight="10dp"
android:gravity="center" android:ellipsize="end"
android:layout_marginLeft="10dp" android:singleLine="true"></EditText>
</LinearLayout>
<LinearLayout android:layout_weight="1" android:id="@+id/linearLayout4"
android:layout_height="match_parent" android:layout_width="wrap_content">
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto1"
android:id="@+id/tastoMod1" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto2"
android:id="@+id/tastoMod2" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
</LinearLayout>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout5"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout android:id="@+id/linearLayout6"
android:layout_height="wrap_content" android:layout_width="match_parent">
<EditText android:layout_height="40dp" android:id="@+id/editT3"
android:layout_width="115dp" android:layout_marginLeft="32dp"
android:layout_marginRight="25dp" android:gravity="center"
android:ellipsize="end" android:singleLine="true"></EditText>
<EditText android:layout_height="40dp" android:id="@+id/editT4"
android:layout_width="115dp" android:layout_marginRight="30dp"
android:gravity="center" android:ellipsize="end" android:singleLine="true"
android:layout_marginLeft="10dp"></EditText>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout7"
android:layout_height="wrap_content" android:layout_width="match_parent">
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto3"
android:id="@+id/tastoMod3" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@drawable/tasto4"
android:id="@+id/tastoMod4" android:background="@null"
android:layout_marginLeft="30dp" android:layout_marginTop="-5dp"></ImageButton>
</LinearLayout>
</LinearLayout>
can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定,但你应该尝试这个代码:-
我希望这会有所帮助..
I am not sure but you should try this code:-
I hope this will help..
最好的方法是在 XML 文件中添加以下代码
The Best Way To Do This, Is To Add Following Codes In XML File