多行的EditText Android中的光标开始在上面光标、在上面、EditText、Android

2023-09-04 23:51:38 作者:╭ァ墨尔本的晴空丶

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

我有一个多行的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的内容。

Android开发之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.