我有一个使用这种布局的伪对话框:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/containerPageConatiner">
<FrameLayout android:id="@+id/dialogHolder"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:padding="15dp"
android:layout_gravity="center"
android:background="@drawable/panel_picture_frame_bg_focus_blue"/>
</FrameLayout>
根据打开的对话框,我在<FrameLayout>
中放置了一个片段-控制对话框的活动如下所示:
<activity
android:label="@string/app_name"
android:name=".activity.DialogActivity"
android:theme="@style/CustomTheme.Screen.Transparent"
android:windowSoftInputMode="adjustResize">
不幸的是,当您单击对话框中的编辑文本时,不会调整大小。windowSoftInputMode
实际上没有什么区别,因为它的功能与平移模式相同。
文档中说"这当然只适用于具有可调整区域的应用程序,该区域可以缩小以腾出足够的空间",但并没有告诉你"可调整区域"的含义,这让我认为在某种程度上我没有可调整区域?
如果有人知道发生了什么事,他们能帮我吗?
编辑
像这样包围对话框不会改变任何东西:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerPageConatiner"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
<FrameLayout
android:id="@+id/dialogHolder"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:padding="15dp"
android:layout_gravity="center"
android:background="@drawable/panel_picture_frame_bg_focus_blue"/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
EDIT2
作为父项滚动查看也没有帮助:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerPageConatiner"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/dialogHolder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="15dp" />
</ScrollView>
我创建了一个新项目,试图获得调整窗口大小的基本功能,并慢慢地将其移向项目的目标位置。这样我就把问题归结为:
在我的主题层次结构中,我有这样的属性:
<item name="android:windowFullscreen">true</item>
它被埋葬在Theme.Black.NoTitleBar.FullScreen
的水平上——我的自定义主题的祖先。
文档表明,这是一个"标志,指示该窗口是否应填充整个屏幕"。如果你有一个占据整个屏幕的应用程序,这听起来是一件好事。。。但它仍然占据了整个屏幕,没有国旗。
事实上,一旦你把它拿出来,应用程序就绝对没有任何变化。。。除CCD_ 4外。
不久前,我在创建的库中也遇到了同样的问题。(物料抽屉(
据我所知,所有提供的答案并不能解决主要问题,它们只是指向删除全屏标志(android:windowFullscreen
(,这对很多人来说都不是解决方案。
上面提到的"问题"只出现在API 19级(KITKAT(开始的Android版本中,因为它们改变了行为。正确地说,这没有问题,它正在按预期工作。请参阅安卓员工的评论(安卓问题(。
因此,我开始围绕Android源代码进行挖掘,并通过使用ViewTreeObserver.OnGlobalLayoutListener
并在键盘显示/隐藏时做出反应,得出了以下解决方案。如果显示了Keyboard,我会在容器视图的底部添加填充,然后将模仿adjustResize
所做的操作。
解决方案
为了简化使用,我将整个过程封装在一个简单的KeyboardUtil辅助类中。
/**
* Created by mikepenz on 14.03.15.
* This class implements a hack to change the layout padding on bottom if the keyboard is shown
* to allow long lists with editTextViews
* Basic idea for this solution found here: http://stackoverflow.com/a/9108219/325479
*/
public class KeyboardUtil {
private View decorView;
private View contentView;
public KeyboardUtil(Activity act, View contentView) {
this.decorView = act.getWindow().getDecorView();
this.contentView = contentView;
//only required on newer android versions. it was working on API level 19 (Build.VERSION_CODES.KITKAT)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
decorView.getViewTreeObserver().addOnGlobalLayoutListener(onGlobalLayoutListener);
}
}
public void enable() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
decorView.getViewTreeObserver().addOnGlobalLayoutListener(onGlobalLayoutListener);
}
}
public void disable() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
decorView.getViewTreeObserver().removeOnGlobalLayoutListener(onGlobalLayoutListener);
}
}
//a small helper to allow showing the editText focus
ViewTreeObserver.OnGlobalLayoutListener onGlobalLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Rect r = new Rect();
//r will be populated with the coordinates of your view that area still visible.
decorView.getWindowVisibleDisplayFrame(r);
//get screen height and calculate the difference with the useable area from the r
int height = decorView.getContext().getResources().getDisplayMetrics().heightPixels;
int diff = height - r.bottom;
//if it could be a keyboard add the padding to the view
if (diff != 0) {
// if the use-able screen height differs from the total screen height we assume that it shows a keyboard now
//check if the padding is 0 (if yes set the padding for the keyboard)
if (contentView.getPaddingBottom() != diff) {
//set the padding of the contentView for the keyboard
contentView.setPadding(0, 0, 0, diff);
}
} else {
//check if the padding is != 0 (if yes reset the padding)
if (contentView.getPaddingBottom() != 0) {
//reset the padding of the contentView
contentView.setPadding(0, 0, 0, 0);
}
}
}
};
/**
* Helper to hide the keyboard
*
* @param act
*/
public static void hideKeyboard(Activity act) {
if (act != null && act.getCurrentFocus() != null) {
InputMethodManager inputMethodManager = (InputMethodManager) act.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(act.getCurrentFocus().getWindowToken(), 0);
}
}
}
然后,您可以通过以下操作在活动或片段中使用它:
//initialize the KeyboardUtil (you can do this global)
KeyboardUtil keyboardUtil = new KeyboardUtil(activity, getContent().getChildAt(0));
//enable it
keyboardUtil.enable();
//disable it
keyboardUtil.disable();
整个util类在上面提到的库MaterialDrawer中使用,可以在KeyboardUtil中找到。这将始终包含最新版本。(如果有改进(
问题似乎出在FrameLayout上,因为它的行为是这样的,每个子帧都占据了该帧的可见空间,因此不需要调整大小以适应子帧。尝试使用RelativeLayout。它应该起作用。
在不使用ScrollView
作为父视图的情况下,我只是将android:fitsSystemWindows="true"
添加到父视图(它是RelativeLayout
(中,并将adjustResize
添加到活动的Manifest中,结果就成功了。
试着把你的LinearLayout
放在ScrollView
上,这对我有用过一次。。
我不得不设置
<item name="android:windowFullscreen">false</item>
尽管如此,我从未将其设置为真,而且该应用程序实际上并不是全屏的。
正如最初的海报所发现的,当全屏标志被分配给一个活动时,android:windowFullscreen属性将不起作用,因此当软键盘可见时,您的窗口将不会调整大小,也不会滚动。
当软键盘可见时,只需删除全屏标志而不使用全屏主题即可滚动。
我不知道为什么,但如果主题中有<item name="android:windowTranslucentNavigation">true</item>
,请将其更改为false
。它将开始发挥作用。真奇怪。
确保在样式中将windowTranslucentStatus
设置为false
。