我正在开发一款布局稍微复杂的Android应用,我正在做噩梦让它按照我想要的方式运行。 我的主要布局定义如下:
<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"
android:background="#000000"
tools:context=".MainLayout" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scrollbars="none" />
<LinearLayout
android:id="@+id/menudown"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
... buttons ...
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerInParent="true" >
... header content ...
</LinearLayout>
</RelativeLayout>
布局的想法是内容框架(内容),页脚菜单( menudown )和标题(标题)将鼠标悬停在内容上,与屏幕顶部对齐。 - 抱歉,没有形象,机密项目。
内容会被其他布局夸大,具体取决于用户所在的部分,其中一些是要填充的表单。所以,我刚刚使用adjustPan,一切正常。
这里的问题是:客户端要求我在显示软键盘的同时使内容可滚动,以便用户可以查看他在另一个上写的任何内容字段。
这很痛苦,因为:表单适合屏幕,因此使用内容作为滚动视图无效,除非调整大小。
只是更改为adjustResize不起作用,因为: menudown上升了软键盘,不应该堆积。而且,视觉效果很糟糕。
该应用程序已经为iPad制作(由其他人制作),并且他发生的事情是:在软键盘下,仅推送内容,menudown保持与屏幕底部对齐查看。然后,内容变得可滚动,以便用户能够完全看到它。
答案 0 :(得分:0)
我也有同样的问题,使得键盘的行为与在iOS上的行为相同。我可以从所有其他帖子中获得的最好的事情是手动检测软键盘并将视图向上移动。
这似乎是最好的:How to check visibility of software keyboard in Android?