public class MainActivity extends Activity implements OnClickListener {
private TextView tv;
private RelativeLayout rela;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.jia);
tv.setOnClickListener(this);
rela=(RelativeLayout)findViewById(R.id.rela);
}
//
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.jia:
/**
* 出现弹出窗口
*/
// 把xml布局文件动态加载到java程序
View content = View.inflate(MainActivity.this, R.layout.popwin,
null);
//创建弹出窗口,窗口布局使用View对象表示
PopupWindow pop = new PopupWindow(content,
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
//添加背景图片
pop.setBackgroundDrawable(getResources().getDrawable(R.drawable.pop_help_bg));
//允许点击区域外的地方
pop.setOutsideTouchable(true); //点击背景外的图片,窗口消失
/**
* 显示形式:
* 出现在子控件的下方(showAsDropDown) ;
* 出现在父布局的上下中(showAtLocation);
*/
// pop.showAsDropDown(tv); //以子控件
//以父布局
pop.showAtLocation(rela, Gravity.BOTTOM, 0, 0);
break;
default:
break;
}
}
}
private TextView tv;
private RelativeLayout rela;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.jia);
tv.setOnClickListener(this);
rela=(RelativeLayout)findViewById(R.id.rela);
}
//
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.jia:
/**
* 出现弹出窗口
*/
// 把xml布局文件动态加载到java程序
View content = View.inflate(MainActivity.this, R.layout.popwin,
null);
//创建弹出窗口,窗口布局使用View对象表示
PopupWindow pop = new PopupWindow(content,
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
//添加背景图片
pop.setBackgroundDrawable(getResources().getDrawable(R.drawable.pop_help_bg));
//允许点击区域外的地方
pop.setOutsideTouchable(true); //点击背景外的图片,窗口消失
/**
* 显示形式:
* 出现在子控件的下方(showAsDropDown) ;
* 出现在父布局的上下中(showAtLocation);
*/
// pop.showAsDropDown(tv); //以子控件
//以父布局
pop.showAtLocation(rela, Gravity.BOTTOM, 0, 0);
break;
default:
break;
}
}
}