我想阻止应用栏向上推动当Edittext点击时请帮我阻止Appbar滚动我添加了android:windowSoftInputMode =“adjustResize”和adjustpan但是没有用,请帮助我。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:id="@+id/act"
android:clickable="true"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context="com.example.admin.easydart.View.Dart">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_alignParentTop="true"
android:background="#016ba9"
android:layout_height="60dp"
android:layout_width="match_parent">
</android.support.v7.widget.Toolbar>
<RelativeLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_below="@+id/my_toolbar"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/actS"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:clickable="true"
android:focusableInTouchMode="true"
android:gravity="center"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
答案 0 :(得分:1)
使用android:windowSoftInputMode="adjustNothing"
清单文件中的活动
<activity
android:name=".YourActivity"
android:windowSoftInputMode="adjustNothing"
android:theme="@style/StoreSetting" />
答案 1 :(得分:1)
在您的活动类的onCreate方法中设置:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
答案 2 :(得分:0)