<span style="font-family: Arial, Helvetica, sans-serif;"><?xml version="1.0" encoding="utf-8"?></span>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:background="@drawable/ic_launcher"    android:orientation="vertical" >    <ImageView        android:id="@+id/imageView"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:src="@drawable/ic_launcher" />    <TextView        android:id="@+id/textView"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="TextView" /></LinearLayout>

package com.example.popupwindow_demo;import android.app.Activity;import android.os.Bundle;import android.view.Gravity;import android.view.LayoutInflater;import android.view.View;import android.widget.Button;import android.widget.PopupWindow;import android.widget.TextView;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);final Activity activity=this;finalButton button=(Button) findViewById(R.id.button);button.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {LayoutInflater mLayoutInflater=activity.getLayoutInflater();View view=mLayoutInflater.inflate(R.layout.myview, null);TextView text=(TextView) view.findViewById(R.id.textView);text.setText("hello,world!");PopupWindow popupWindow=new PopupWindow(view,300,720);popupWindow.setBackgroundDrawable(getResources().getDrawable(android.R.drawable.alert_dark_frame));popupWindow.setOutsideTouchable(true);//popupWindow.showAsDropDown(button);popupWindow.showAtLocation(activity.getWindow().getDecorView(), Gravity.CENTER, 0, 0);}});}}





Android弹窗_第1张图片

Android弹窗_第2张图片




更多相关文章

  1. Android手机操作系统中实现图片浏览
  2. Android 利用Matrix实现图片随手指平移、旋转、缩放
  3. 巧用Android图片资源,打造更精致的APP
  4. Android 实现图片保存到本地并调用本地地址显示图片
  5. Android设置拍照或者上传本地图片
  6. android 工程,点击图片,在屏幕显示
  7. Android ListView(Selector 背景图片)
  8. android基础:动画案例(图片翻转)

随机推荐

  1. mssql 两表合并sql语句
  2. sqlserver 比较两个表的列
  3. Sql Server 数据库索引整理语句,自动整理
  4. 查询数据排名情况SQL
  5. SQL中的left join right join
  6. SQL 合并多行记录的方法总汇
  7. 在sp_executesql中使用like字句的方法
  8. SQL Server 2008的逻辑查询处理步骤
  9. 批处理 动态sql
  10. 通过备份记录获取数据库的增长情况