我在手机上的EditText中写作时遇到了背景问题。 我的背景是改变大小,而不是保持正确的比例。 我希望它隐藏在键盘后面。 这是我的完整代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/tlo4">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_add_advice"
android:layout_width="match_parent"
android:layout_height="match_parent"
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.jagoda.myapplication.AddAdvice">
<TextView
android:id="@+id/tytul_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style = "@style/tekst"
android:text=""/>
<TextView
android:id="@+id/tytul2_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tytul_add"
style = "@style/tytulDuzy"
android:text=""/>
<EditText
android:id="@+id/new_ad"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="20dp"
android:layout_below="@id/tytul2_add"
style="@style/tekst2" />
<Button
style="@style/przycisk"
android:text="Dodaj rozwiązanie"
android:layout_width="340dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@id/new_ad"
android:onClick="to_home"
android:id="@+id/button"/>
</RelativeLayout>
</ScrollView>
</LinearLayout>
感谢您的帮助:)
答案 0 :(得分:0)
AndroidManifest
中的尝试添加到您的活动主体:android:windowSoftInputMode="adjustPan"