EditText在android

时间:2015-04-27 23:49:39

标签: android dialog android-animation alertdialog

简化更复杂的问题。

我有一个带有此视图dialog.xml的AlertDialog(我可能错了,这个问题与AlertDialog无关,但一般来说是视图):

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">

  // <ImageView 48dp x 48dp/> ImageView for profile photo

  <EditText
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:layout_gravity="top"
    android:maxLines="5"
    android:inputType="textMultiLine"
    android:scrollbars="vertical"
    android:scrollHorizontally="false"/>

  // <ImageView 48dp x 48dp> ImageView for a send button.

</LinearLayout>

我需要将整个对话框放在键盘正上方的底部,以便它与聊天程序的方式类似。我需要它作为浮动对话框,因为它没有绑定到父视图中的任何一个位置。

我这样做(在客户端代码中)来实现:

dialog.show();  // above dialog
Window window dialog.getWindow();
window.setGravity(Gravity.BOTTOM);
window.setLayout(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

现在当我输入时,编辑字段正确地扩展到5行(从下往上)。但是如果输入太快(按Enter键快速创建新线条),对话框展开动画(高度向下增加)比对话框向上移动动画要慢。当对话框看起来漂浮在空中时,这会导致1-2秒,其下边框和键盘之间有一点间隙。

我该如何防止这种情况(消除它们之间的这个空间)?或者让动画花费0秒?

澄清一下:我不需要为对话框弹出/关闭禁用动画。当窗口扩展太快时(例如通过创建新线条),窗口向上移动,而高度不能足够快地补偿移位,在对话框和键盘之间留下一个小的临时(1-2秒)间隙。这可能是浮动视图的基本问题(我尝试使用PopupWindow具有相同的效果)。

与差距对话: Dialog with the gap

在1-2秒后(当扩展动画最终赶上时)变成这样: Dialog with no gap

2 个答案:

答案 0 :(得分:4)

经过大量挖掘堆栈溢出答案而没有结果后,我自己找到了解决方案。

我们的想法是首先将整个对话框扩展为全屏,但是有一个覆盖空白部分的透明覆盖视图。

dialog.xml现在如下所示:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

  <!-- Transparent view that extends over entire screen and push comment view to the bottom -->
  <View
      android:id="@+id/overlay"
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_weight="1"
      android:background="@color/transparent"/>

  <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_alignParentBottom="true"
      android:background="@android:color/white"
      android:orientation="horizontal">

    // <ImageView 48dp x 48dp/> ImageView for profile photo

    <EditText
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:maxLines="5"
        android:inputType="textMultiLine"
        android:scrollbars="vertical"
        android:scrollHorizontally="false"/>

    // <ImageView 48dp x 48dp> ImageView for a send button.

  </LinearLayout>
</LinearLayout>

对于Java代码:

public void showDialog() {
  View content = activity.getLayoutInflater().inflate(R.layout.dialog, null, false);

  // This makes top LinearLayout background transparent, without this, 
  // it will be all white covering fullscreen.
  content.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));        

  Dialog dialog = new AlertDialog.Builder(context)
    .setView(content).create();
  dialog.show(); // needs to be done before window changes
  Window window dialog.getWindow();
  window.setLayout(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
  window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

  View overlay = content.findViewById(R.id.overlay);
  overlay.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
      if (dialog.isShowing()) {
        dialog.cancel();
      }
    }
  });
}

答案 1 :(得分:1)

To remove animation, follow the following steps:

  1. Adds a no_anim.xml to /res/anim, the key is to set duration to 0

    <scale xmlns:android="http://schemas.android.com/apk/res/android"
        android:fromDegrees="0"
        android:toDegrees="360"
        android:pivotX="50%"
        android:pivotY="50%"
        android:duration="0" />
    
  2. Define a custom style using the 0-duration animation:

<style name="NoAnimation">
    <item name="android:windowEnterAnimation">@anim/no_anim</item>
    <item name="android:windowExitAnimation">@anim/no_anim</item>
</style>
  1. Apply the style to your AlertDialog:
dialog.getWindow().getAttributes().windowAnimations = R.style.NoAnimation;