如何在Android中显示动画弹出窗口

时间:2015-11-04 12:52:14

标签: android popup android-custom-view

我正在寻找一种方法来制作弹出窗口(不是Dialog),就像在Whatsapp中点击个人资料图片一样。

像这样的东西。这在Android中如何运作?我在寻找什么?

如果用户点击我的ListView标题中的ImageView,我想显示一些信息。

直到现在,如果点击ImageView,我会打开一个新的活动。

holder.projectImageImageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(context1, JobInfo.class);
            intent.putExtra("projectInfo", projectItems);
            intent.putExtra("distributorInfo", distributorItems);
            intent.putExtra("contractorInfo", contractorItems);
            context1.startActivity(intent);
        }
    });

此代码位于自定义适配器内,扩展了BaseAdapter

有没有办法做我想做的事?

亲切的问候!

2 个答案:

答案 0 :(得分:6)

您可以设置对话框窗口输入动画并以样式退出动画,并可以使用此对话框设置 -

<style name="animationdialog">
    <item name="@android:windowEnterAnimation">@anim/dialog_in</item>
    <item name="@android:windowExitAnimation">@anim/dialog_out</item>
</style>


  dialog = new Dialog(getActivity(),android.R.style.Theme_Holo_Dialog_NoActionBar);
  dialog.setContentView(R.layout.custom_layout_dialog);
  dialog.getWindow().getAttributes().windowAnimations = R.style.animationdialog;

dialog_in.xml

  <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

    <scale

        android:duration="500"
        android:fromXScale="0.3"
        android:fromYScale="0.3"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="1.0"
        android:toYScale="1.0" />

    <alpha
        android:duration="500"
        android:fromAlpha="0.0"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:toAlpha="1.0" />

</set>

dialog_out.xml

  <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <scale
        android:duration="500"
        android:fromXScale="1.0"
        android:fromYScale="1.0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="0.0"
        android:toYScale="0.0" />

    <alpha
        android:duration="500"
        android:fromAlpha="1.0"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:toAlpha="0.0" />

</set>

答案 1 :(得分:1)

您可以为需要Layout的自定义Dialog创建TextView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF" 
        android:layout_toRightOf="@+id/image"/>

    <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100px"
        android:layout_height="wrap_content"
        android:text=" Ok "
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
    />

</RelativeLayout>

以及Activity中的onClick()

    final Dialog dialog = new Dialog(context);
    dialog.setContentView(R.layout.custom);
    dialog.setTitle("Title...");

    // set the custom dialog components - text and button
    TextView text = (TextView) dialog.findViewById(R.id.text);
    text.setText("Your Text");

    Button dialogButton = (Button) dialog.findViewById(R.id.dialogButtonOK);
    // if button is clicked, close the custom dialog
    dialogButton.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            dialog.dismiss();
        }
    });
        dialog.show();