出现软键盘时工具栏向上移动
Posted
技术标签:
【中文标题】出现软键盘时工具栏向上移动【英文标题】:Toolbar shifts up, when soft keyboard appears 【发布时间】:2017-08-11 09:20:11 【问题描述】:我想让我的活动布局在键盘出现时调整大小,但同时保持其工具栏位置不变。到目前为止,当我单击编辑文本并出现键盘时,所有屏幕都向上移动。
键盘出现前:
键盘出现后,工具栏不再可见:
我想将键盘保持在原位并将图像移到其下方。
我不能只在清单中指定:android:windowSoftInputMode="adjustNothing"
,因为当键盘出现时,编辑文本将不再可见。
到目前为止,我使用以下代码:
在 AndroidManifest.xml 中:
android:windowSoftInputMode="adjustPan|stateHidden"
在布局中:
<?xml version="1.0" encoding="utf-8"?>
<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_
android:layout_
android:background="@android:color/white"
android:clickable="true"
android:fitsSystemWindows="true"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context="studentplanner.mobile.yardi.com.studplan.presentation.activities.PersonalInformationActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_
android:layout_
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:elevation="4dp"
android:background="@color/main">
<TextView
android:id="@+id/toolbar_title"
android:layout_
android:layout_
android:layout_gravity="center"
android:text="@string/personal_information_text"
android:textColor="@android:color/white"
android:textSize="@dimen/medium2_text_size" />
</android.support.v7.widget.Toolbar>
<ImageView
android:id="@+id/background_container"
android:layout_
android:layout_
android:layout_below="@+id/toolbar"
android:scaleType="center"
android:src="@drawable/userbackground" />
...
欢迎任何帮助!
【问题讨论】:
你使用了哪个活动?空白活动还是空活动? 空活动,先生。 请使用这个空白活动。 【参考方案1】:在 AndroidManifest.xml 中添加 android:windowSoftInputMode="adjustResize" 解决问题。
<activity
android:name=".MainActivity"
android:label="@string/activity_main"
android:windowSoftInputMode="adjustResize">
</activity>
【讨论】:
android:windowSoftInputMode="adjustResize" 这并没有解决我的问题,因为键盘遮住了编辑文本。【参考方案2】:样式文件
<item name="android:windowTranslucentStatus">true</item>
并添加
android:fitsSystemWindows="true"
在您的活动 ParentLayout 中
【讨论】:
<item name="android:windowTranslucentStatus">true</item>
在styles.xml 中
在活动的父布局中添加 android:fitsSystemWindows="true"
并在清单中添加android:windowSoftInputMode="adjustResize"
【讨论】:
android:windowSoftInputMode="adjustResize" 这并没有解决我的问题,因为键盘遮住了编辑文本。我遇到了同样的问题。 在处理片段时,我将 isScrollContainer 放在框架布局中,它解决了所有键盘问题。
<FrameLayout android:id="@+id/container_framelayout"
android:layout_
android:layout_
android:isScrollContainer="true"/>
这就是我所需要的。
但是,如果您想在每个片段基础上设置 ti,则可以通过在 onCreateView 片段回调中将容器设置为滚动容器来执行此操作:
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)
View rootView = inflater.inflate(R.layout.activity_type_barcode, container, false);
container.setScrollContainer(true);
return rootView;
【讨论】:
【参考方案5】:尝试ScrollView
作为父布局。它有助于调整 ScrollView
内的视图大小。
<RelativeLayout ...
<Toolbar...
</Toolbar>
</RelativeLayout>
<ScrollView ..
// your views
</ScrollView>
【讨论】:
【参考方案6】:将 android:windowSoftInputMode="adjustPan" 添加到 AndroidManifest 中的活动。那应该可以解决它。
【讨论】:
以上是关于出现软键盘时工具栏向上移动的主要内容,如果未能解决你的问题,请参考以下文章