0

所以基本上我有一个主要布局,它是一个登录屏幕。问题是当我点击 Edittext 字段时,整个相对布局会从屏幕上消失......

这是我的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_gradient"
android:theme="@android:style/Theme.NoTitleBar"
tools:context=".MainActivity" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/editText1"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="60dp"
    android:baselineAlignBottom="true"
    android:contentDescription="@string/skedo"
    android:src="@drawable/logo" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:layout_above="@+id/editText2"
    android:layout_centerHorizontal="true"
    android:layout_marginLeft="13dp"
    android:layout_marginRight="13dp"
    android:drawableLeft="@drawable/user"
    android:drawablePadding="13dp"
    android:paddingLeft="13dp"
    android:inputType="textEmailAddress"
    android:background="@drawable/round_corners"
    android:ems="10"
    android:hint="@string/email" />

<EditText
    android:id="@+id/editText2"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:layout_centerInParent="true"
    android:layout_marginLeft="13dp"
    android:layout_marginRight="13dp"
    android:layout_marginTop="8dp"
    android:drawableLeft="@drawable/lock"
    android:drawablePadding="13dp"
    android:paddingLeft="13dp"
    android:background="@drawable/round_corners"
    android:ems="10"
    android:hint="@string/password"
    android:inputType="textPassword" >

</EditText>



<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/editText2"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="8dp"
    android:textSize="17sp"
    android:shadowColor="#000000"
    android:shadowRadius="1"
    android:shadowDx="0"
    android:shadowDy="1"
    android:text="@string/login"
    android:textColor="#ffffff"
    android:background="@drawable/button_states" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/button1"
    android:layout_centerInParent="true"
    android:layout_marginTop="23dp"
    android:clickable="true"
    android:text="@string/forgot_password"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textSize="13sp" />

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="23dp"
    android:contentDescription="@string/imgdesc"
    android:src="@drawable/or" />


<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/imageView2"
    android:shadowColor="#ffffff"
    android:shadowRadius="1"
    android:shadowDx="0"
    android:textSize="14sp"
    android:textStyle="bold"
    android:shadowDy="1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="23dp"
    android:text="@string/register"
    android:background="@drawable/create_account"
     />

因此,当这种情况发生时,我的徽标会从屏幕上消失,我希望它能够显示出来。最好的例子是 facebook 登录屏幕,当您点击 editText 时,它会挤压所有内容并且徽标仍然可见。那么我怎样才能达到这样的效果呢?

所以当什么都没有按下时:http: //postimage.org/image/swdtggnil/

当键盘出现 http://postimage.org/image/5pbdfrftl/

我希望它的行为完全一样。

4

1 回答 1

1

如果我没有误解你可以添加

 android:windowSoftInputMode="adjustPan"

在里面AndroidManifest.xml

<activity
   android:name="yourActivity"
   android:windowSoftInputMode="adjustPan" >
</activity>
于 2012-12-03T16:57:04.373 回答