我希望在键盘出现时调整活动布局大小,但同时保持其工具栏位置不变。到目前为止,当我点击编辑文本并出现键盘时,所有屏幕都会向上移动。
键盘出现后,工具栏不再可见:
我想将键盘放在原位并在图像下方移动。
我不能只在清单中指定: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_width="match_parent"
android:layout_height="match_parent"
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_width="match_parent"
android:layout_height="@dimen/toolbar_and_button_height"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:elevation="4dp"
android:background="@color/main">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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_width="match_parent"
android:layout_height="@dimen/extra_large5_dimen"
android:layout_below="@+id/toolbar"
android:scaleType="center"
android:src="@drawable/userbackground" />
...
欢迎任何帮助!
答案 0 :(得分:0)
<item name="android:windowTranslucentStatus">true</item>
在您的活动的父布局中添加android:fitsSystemWindows="true"
并在清单
android:windowSoftInputMode="adjustResize"
答案 1 :(得分:0)
样式文件
<item name="android:windowTranslucentStatus">true</item>
并添加
android:fitsSystemWindows="true"
您的活动中的ParentLayout
答案 2 :(得分:0)
我有同样的问题 在处理片段时,我将isScrollContainer放在framelayout中,它解决了所有键盘问题。
<FrameLayout android:id="@+id/container_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
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;
}
答案 3 :(得分:0)
尝试将 ScrollView
作为父布局。它有助于在 ScrollView
内调整视图的大小。
<RelativeLayout ...
<Toolbar...
</Toolbar>
</RelativeLayout>
<ScrollView ..
// your views
</ScrollView>
答案 4 :(得分:-1)
在AndroidManifest.xml中添加android:windowSoftInputMode =“adjustResize”解决问题。
<activity
android:name=".MainActivity"
android:label="@string/activity_main"
android:windowSoftInputMode="adjustResize">
</activity>