弹出一个 PopupWindows

new PopupWindows(mContext, noScrollgridview);

public class PopupWindows extends PopupWindow {

    public PopupWindows(Context mContext, View parent) {

        View view = View
                .inflate(mContext, R.layout.item_popupwindows, null);
        view.startAnimation(AnimationUtils.loadAnimation(mContext,
                R.anim.fade_ins));
        LinearLayout ll_popup = (LinearLayout) view
                .findViewById(R.id.ll_popup);
        ll_popup.startAnimation(AnimationUtils.loadAnimation(mContext,
                R.anim.push_bottom_in_2));

        setWidth(ViewGroup.LayoutParams.FILL_PARENT);
        setHeight(ViewGroup.LayoutParams.FILL_PARENT);
        setBackgroundDrawable(new BitmapDrawable());
        setFocusable(true);
        setOutsideTouchable(true);
        setContentView(view);
        showAtLocation(parent, Gravity.BOTTOM, 0, 0);
        update();

        Button bt1 = (Button) view
                .findViewById(R.id.item_popupwindows_camera);
        Button bt2 = (Button) view
                .findViewById(R.id.item_popupwindows_Photo);
        Button bt3 = (Button) view
                .findViewById(R.id.item_popupwindows_cancel);
        bt1.setText("删除");
        bt1.setTextColor(Color.RED);
        bt2.setText("取消");
        bt1.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {

// photo();
dismiss();
}
});
bt2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Intent intent = new Intent(EditCourseActivity.this,ChosePhotoActivity.class);
// startActivity(intent);
dismiss();
}
});
bt3.setVisibility(View.GONE);
}
}

动画

android:duration="20"
android:fromAlpha="0.0"
android:toAlpha="1.0" />

动画

android:duration="20"
android:fromYDelta="100%"
android:interpolator="@android:anim/decelerate_interpolator"
android:toYDelta="0" />

布局文件

android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_transparent" >



    

    

        

你可能感兴趣的:(弹出一个 PopupWindows)