本文介绍了Android的EditText上不起作用,安卓imeOptions =" actionNext"安卓的inputType ="电话:QUOT;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我都试过,只如果我删除的android:inputType下=手机键盘输入可以跳转到下一步的EditText。我不知道是否有过机器人之间的一些冲突:imeOptions =actionNext的android:inputType下=手机

code:
AutoCompleteTextView 的android:imeOptions =actionNext的android:inputType下=手机,但在键盘上输入不会去到下一个。

 < RelativeLayout的
                机器人:layout_width =match_parent
                机器人:layout_height =WRAP_CONTENT
                机器人:方向=横向>                < ImageView的
                    机器人:layout_width =WRAP_CONTENT
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_alignParentLeft =真
                    机器人:paddingBottom会=12dp
                    机器人:paddingLeft =13dp
                    机器人:paddingTop =12dp
                    机器人:SRC =@绘制/ fd_28/>
                <的TextView
                    机器人:ID =@ + ID / texttitle_phone
                    风格=@风格/ TextviewRentItem
                    机器人:layout_width =WRAP_CONTENT
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_marginLeft =30dip/>                <的EditText
                    机器人:ID =@ + ID / content_phone
                    风格=@风格/ TextviewRentItemCon3
                    机器人:layout_width =match_parent
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_marginRight =50dip
                    机器人:layout_toRightOf =@ ID / texttitle_phone
                    机器人:paddingBottom会=12dp
                    机器人:paddingRight =15dp
                    机器人:paddingTop =12dp
                    机器人:imeOptions =actionNext
                    机器人:单线=真
                    安卓的inputType =手机/>
            < / RelativeLayout的>
        < / LinearLayout中>        <的LinearLayout
            机器人:ID =@ + ID / linearLayout0_ll
            机器人:layout_width =FILL_PARENT
            机器人:layout_height =WRAP_CONTENT
            机器人:layout_marginTop =10dip
            机器人:背景=@绘制/ bg_rect_black_filled_white
            机器人:方向=垂直>            <! - 二 - >            < RelativeLayout的
                机器人:ID =@ + ID / linearLayout0
                机器人:layout_width =match_parent
                机器人:layout_height =WRAP_CONTENT
                机器人:方向=横向>                < ImageView的
                    机器人:ID =@ + ID / img_house
                    机器人:layout_width =WRAP_CONTENT
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_alignParentLeft =真
                    机器人:paddingBottom会=12dp
                    机器人:paddingLeft =10dp
                    机器人:paddingTop =12dp
                    机器人:SRC =@绘制/ fd_29/>                <的TextView
                    机器人:ID =@ + ID / textview3
                    风格=@风格/ TextviewRentItem
                    机器人:layout_width =WRAP_CONTENT
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_marginLeft =30dip
                    机器人:可聚焦=真
                    机器人:文字=@字符串/住宅/>                < AutoCompleteTextView
                    机器人:ID =@ + ID / add_rent_manage_house
                    风格=@风格/ TextviewRentItemCon3
                    机器人:layout_width =match_parent
                    机器人:layout_height =WRAP_CONTENT
                    机器人:layout_marginRight =50dip
                    机器人:layout_toRightOf =@ ID / textview3
                    机器人:dropDownHeight =90dp
                    机器人:提示=@字符串/ default_add_rent_house_remind
                    机器人:imeOptions =actionNext
                    机器人:单线=真/>
            < / RelativeLayout的>


解决方案

(在编辑和注释的OP回答。见Question没有答案,但问题的评论解决)

在OP写道:

@xbakesx wrote:

这篇关于Android的EditText上不起作用,安卓imeOptions =" actionNext"安卓的inputType ="电话:QUOT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 01:39