I have two Relative layouts. Such that , one is over the other .
我有两个相对布局。这样,一个是另一个。
<RelativeLayout
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"
tools:context="com.mettl.zobbr.SliderActivity" >
<RelativeLayout
android:id="@+id/dddd"
android:layout_width="fill_parent"
android:isScrollContainer="false"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/Button06"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="72dp"
android:layout_alignParentLeft="true"
android:isScrollContainer="false"
android:layout_alignParentTop="true"
android:background="@drawable/spin_title" />
<Button
android:id="@+id/button9"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_marginLeft="85dp"
android:background="#00000000"
android:isScrollContainer="false"
android:onClick="BackToJob"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/button8"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<Button
android:id="@+id/button8"
style="?android:attr/buttonStyleSmall"
android:background="#00000000"
android:isScrollContainer="false"
android:layout_marginLeft="160dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="BackToLoc"
android:layout_alignLeft="@+id/button7"
android:layout_alignParentTop="true" />
</RelativeLayout>
<ScrollView
android:layout_below="@+id/dddd"
android:layout_width="fill_parent"
android:background="@drawable/spin_back"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
>
<RelativeLayout
android:layout_below="@+id/dddd"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<kankan.wheel.widget.WheelView android:id="@+id/hour"
android:layout_height="wrap_content"
android:layout_marginLeft="85dp"
android:layout_marginTop="70dp"
android:layout_width="75dp"/>
<kankan.wheel.widget.WheelView android:id="@+id/second"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="70dp"
android:layout_toRightOf="@+id/hour"
android:layout_width="75dp"/>
<TextView
android:id="@+id/textView124"
android:layout_toRightOf="@+id/second"
android:layout_width="wrap_content"
android:textSize="25dp"
android:textColor="#000000"
android:layout_height="wrap_content"
android:layout_marginTop="70dp"
android:layout_marginLeft="10dp"
android:layout_alignParentRight="true"
android:paddingTop="65dp"
android:text="000/-" />
<EditText
android:id="@+id/textView1234"
android:layout_toRightOf="@+id/second"
android:layout_width="wrap_content"
android:textSize="25dp"
android:layout_marginLeft="100dp"
android:layout_marginRight="100dp"
android:gravity="center"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:maxLength="10"
android:inputType="number"
android:focusableInTouchMode="true"
android:layout_height="wrap_content"
android:layout_below="@+id/hour"
android:paddingTop="95dp"
/>
</RelativeLayout>
</ScrollView>
<LinearLayout
android:id="@+id/btnLL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/button12"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="3"
android:onClick="refresh"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:background="@drawable/veri_button"/>
<Button
android:id="@+id/button2"
android:layout_width="50dp"
android:layout_height="40dp"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:background="@drawable/button_background_selector"
/>
</LinearLayout>
</RelativeLayout>
But when I click on the edit text of the second layout . The softKeyboard pushes the the first layout out of the screen .(The first layout ,is located on top of the screen ).
但是当我点击第二个布局的编辑文本时。 softKeyboard将第一个布局推出屏幕。(第一个布局位于屏幕顶部)。
I have used android:isScrollContainer="false"
,yet the required result was not achieved. I have added android:windowSoftInputMode="adjustPan"
to the manifest as well . Still did not work.
我使用了android:isScrollContainer =“false”,但未达到所需的结果。我已经在清单中添加了android:windowSoftInputMode =“adjustPan”。仍然没有奏效。
1 个解决方案
#1
0
try in your manifest instead of:
尝试在你的清单而不是:
android:windowSoftInputMode="adjustPan"
use:
android:windowSoftInputMode="adjustNothing"
#1
0
try in your manifest instead of:
尝试在你的清单而不是:
android:windowSoftInputMode="adjustPan"
use:
android:windowSoftInputMode="adjustNothing"