いくつかの値を取得するボタンをクリックすると、このビューはより大きな垂直の2つのサブレイヤに分散されますLinearLayout
このように:"subLayout"をAndroidで修正する方法
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp">
<RelativeLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_weight="0.4">
<EditText
android:layout_width="70dp"
android:layout_height="wrap_content"
android:inputType="number"
android:id="@+id/number1" />
<EditText
android:layout_width="70dp"
android:layout_height="wrap_content"
android:inputType="number"
android:id="@+id/number2"
android:layout_below="@+id/number1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calc!"
android:id="@+id/calcButton"
android:layout_below="@+id/number2"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_weight="0.6"
android:layout_alignParentBottom="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Answer"
android:id="@+id/Answer" />
</RelativeLayout>
</LinearLayout>
私の問題は、私は私のEditText
をクリックすることで、キーボードは答えのTextView
は、キーボードと「上書き」私のボタン(全体RelativeLayout
は、キーボードの次)に上がり、設定の方法があります表示されますRelativeLayout
は固定されているので、それはどこにあるのでしょうか? ここに何が起こっているのですか:
マニフェストにwindowSoftInputModeを指定しましたか? – sJy