王立平--PopupWindow

MainActivity.java

<span style="font-size:14px;">package com.main;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.PopupWindow;

public class MainActivity extends Activity {

	private static final String TAG = "MainActivity";
	private Button button;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		button = (Button) findViewById(R.id.button);
		button.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				// 显示 popupWindow
				PopupWindow popupWindow = makePopupWindow(MainActivity.this);
				int[] xy = new int[2];
				button.getLocationOnScreen(xy);
				popupWindow.showAtLocation(button, Gravity.RIGHT | Gravity.TOP,
						-xy[0] / 2, xy[1] + button.getWidth());
				// popupWindow.showAsDropDown(button,0, 0);
			}
		});
	}

	// 创建一个包含自定义view的PopupWindow
	private PopupWindow makePopupWindow(Context cx) {
		PopupWindow window;
		window = new PopupWindow(cx);

		// View contentView =
		// LayoutInflater.from(this).inflate(R.layout.popwindow, null);
		// window.setContentView(contentView);
		Button b1 = new Button(this);
		b1.setText("first");
		b1.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
				LayoutParams.WRAP_CONTENT));

		Button b2 = new Button(this);
		b2.setText("Second");
		b2.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
				LayoutParams.WRAP_CONTENT));

		LinearLayout linearLayout = new LinearLayout(this);
		linearLayout.addView(b1);
		linearLayout.addView(b2);
		linearLayout.setOrientation(LinearLayout.VERTICAL);

		window.setContentView(linearLayout);
		window.setBackgroundDrawable(getResources().getDrawable(
				R.drawable.ic_launcher));
//		window.setWidth(DisplayManager.dipToPixel(150));
//		window.setHeight(DisplayManager.dipToPixel(150));
		window.setWidth(150);
		window.setHeight(150);

		// 设置PopupWindow外部区域是否可触摸
		window.setFocusable(true); // 设置PopupWindow可获得焦点
		window.setTouchable(true); // 设置PopupWindow可触摸
		window.setOutsideTouchable(true); // 设置非PopupWindow区域可触摸
		return window;
	}
}</span>

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/darker_gray"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Title" />

        <Button
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="click" />
    </LinearLayout>

</LinearLayout></span>
时间: 2024-10-14 06:45:00

王立平--PopupWindow的相关文章

王立平--AES加密图片实现 SkImageDecoder::Factory return null

这个问题是在加密图片,存入sd卡,在解密出来展示,出现的.我个人研究了非常久没解决.最后经过高人指点,最终攻克了. 在此,拿出来分享,希望各位少走弯路. 我之前的设计思路是:(能够不看哦) 1.把图片从drawable读入成bitmap 2.bitmap-->byte 3.调用AES的byte加密算法. 4.加密成byte,在转化为string 5,把string存入sd卡. -------------------------------- 4,从sd卡获取string. 5.string-->

王立平--TableLayout

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

王立平--Failed to pull selection

解决的方法:重新启动eclipse

王立平--Unity综上所述控制

GUILayout Label 创建一个自己主动布局的标签. Box 创建一个自己主动布局的box. Button 创建一个单次button.当用户点击button会马上发生一些事件. RepeatButton 创建一个反复button. 当用户点击button会马上发生一些事件.仅仅要用户按住鼠标,button返回true. TextField 创建一个单行文本字段,用户能够编辑当中的字符串. PasswordField 创建一个单行password文本字段.用户能够输入password. T

王立平--Unity中控件总结

GUILayout Label 创建一个自动布局的标签. Box 创建一个自动布局的box. Button 创建一个单次按钮.当用户点击按钮会立即发生一些事件. RepeatButton 创建一个重复按钮.当用户点击按钮会立即发生一些事件.只要用户按住鼠标,按钮返回true. TextField 创建一个单行文本字段,用户可以编辑其中的字符串. PasswordField 创建一个单行密码文本字段,用户可以输入密码. TextArea 创建一个多行密码文本区域,用户可以编辑其中字符串. Togg

王立平--Gallery:实现图片的左右滑动

<span style="font-size:18px;color:#330033;">package com.main; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter

王立平--GUI与GUILayout的差别

GUI.Button (new Rect(0,0,5,5,"哈哈"); GUILayout.Button ("heheh"); 1.以上代码都是现实一个button 2.不同之处: GUI中须要通过new Rect()指定button的位置.不灵活 GUILayout不须要指定位置.会自己主动确定现实位置,较为灵活.

王立平--图片加密

解决的方法1: 把资源放在assets文件夹下.文件名称用md5加密,比方一个xzy.png文件,md5加密后整个就是一个无厘头的字符串,当你要找它时,就把"zyz.png"这个字符串再md5一次,到assets下去equals,就能够拿到这幅图的InputStream了,你知道的,InputStream 能够decde成Bitmap(Bitmap或者BitmapFactory.decodeByStream)的,就能够显示在你的界面上了. 解决的方法2: 把你自己的图读成字节流.然后每

王立平--android特权

//同意应用程序访问和更改checkin数据库"properties"数据表 android.permission.ACCESS_CHECKIN_PROPERTIES //同意应用程序通过WiFi或移动基站获取粗略的位置信息 android.permission.ACCESS_COARSE_LOCATION //同意应用程序通过GPS获取精确的位置信息 android.permission.ACCESS_FINE_LOCATION //同意应用程序訪问额外的位置提供者命令 androi