virtualkeyborad隐藏了Edittext

时间:2015-05-08 09:40:09

标签: android android-edittext hidden virtual-keyboard

我有一个问题,我正在制作论坛,当我插入一个帖子,如果我给EditText写,我得到虚拟键盘,我看不到你写的。

任何人都知道如何提升虚拟键盘未隐藏的EditText

这是我的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.aulasg.Foros" >


<ListView
    android:id="@+id/lvForoTemas"
    android:layout_width="match_parent"
    android:layout_height="392dp" >

</ListView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <EditText
        android:id="@+id/comentarioMensaje"
        android:layout_width="281dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.49"
        android:ems="10" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.49"
        android:onClick="insertarComentario"
        android:text="Button" />

  </LinearLayout>

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

在AndroidManifest.xml android中为您的活动添加以下代码:windowSoftInputMode =&#34; adjustPan&#34;

答案 1 :(得分:0)

You should put this line: android:windowSoftInputMode="adjustPan"

in you Activity in the manifest file:

MS_SubRoutes