多行的EditText Android中的光标开始在上面 [英] MultiLine EditText in Android with the cursor starting on top

查看:193
本文介绍了多行的EditText Android中的光标开始在上面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道这似乎是一个已经千倍回答问题,但我还没有发现任何东西,对我的作品。

我有一个多行的EditText在Android上,能够适应视图大小打与重量(1)和高度(0dip)。我使用重力顶,但它开始在中间。

我想这是与体重有关的问题。这里的code(父是LinearLayout中):

 <的EditText
        机器人:ID =@ + ID / txtContacto
        机器人:layout_width =FILL_PARENT
        机器人:layout_height =0dip
        机器人:layout_gravity =顶
        机器人:inputType =textMultiLine
        机器人:体重=1>
    < /的EditText>
 

解决方案

 <的EditText
        机器人:ID =@ + ID / txtContacto
        机器人:layout_width =FILL_PARENT
        机器人:layout_height =0dip
        机器人:重力=顶
        机器人:inputType =textMultiLine
        机器人:体重=1>
    < /的EditText>
 

尝试上面的code ..在这里布局重心设置的EditText和重力设置的EditText的内容。

I know it seems it's an already thousand times answered issue but I haven't found anything that works for me.

I have a MultiLine EditText on Android that adapts to the view size by "playing" with the weight (1) and the height (0dip). I am using gravity "top" but it starts in the middle.

I guess the problem it's related with the weight. Here's the code (the parent is a LinearLayout):

    <EditText
        android:id="@+id/txtContacto"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_gravity="top"
        android:inputType="textMultiLine" 
        android:weight="1">
    </EditText>

解决方案

<EditText
        android:id="@+id/txtContacto"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:gravity="top"
        android:inputType="textMultiLine" 
        android:weight="1">
    </EditText>

try the above code.. where layout gravity sets the edittext and gravity sets the content of edittext.

这篇关于多行的EditText Android中的光标开始在上面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆