【android】让popupwindow显示在view的上方并与该view水平居中对齐

首先,废话少说,先上效果图:



代码:

public class MainActivity extends Activity implements OnClickListener{

	private Button showBtn1;
	private Button showBtn2;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		showBtn1 = (Button) findViewById(R.id.showBtn1);
		showBtn2 = (Button) findViewById(R.id.showBtn2);
		showBtn1.setOnClickListener(this);
		showBtn2.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		// TODO Auto-generated method stub
		View popupView = LayoutInflater.from(this).inflate(R.layout.popup, null);
		PopupWindow popupWindow = new PopupWindow(popupView, ViewGroup.LayoutParams.WRAP_CONTENT, 
				ViewGroup.LayoutParams.WRAP_CONTENT, true);
		popupWindow.setBackgroundDrawable(new BitmapDrawable());
		popupView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
		int popupWidth = popupView.getMeasuredWidth();
		int popupHeight =  popupView.getMeasuredHeight();
		int[] location = new int[2];
		switch (v.getId()) {
		case R.id.showBtn1:
		    v.getLocationOnScreen(location);
		    popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, (location[0]+v.getWidth()/2)-popupWidth/2,
		    		location[1]-popupHeight);
			break;
		case R.id.showBtn2:
		    v.getLocationOnScreen(location);
		    popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, (location[0]+v.getWidth()/2)-popupWidth/2,
		    		location[1]-popupHeight);
			break;

		default:
			break;
		}
	}
}


Demo下载:http://download.csdn.net/detail/u011494050/7787359

【android】让popupwindow显示在view的上方并与该view水平居中对齐,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。