package com.example.androidtest;
import android.content.Context;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnKeyListener;
import android.view.ViewGroup.LayoutParams;
import android.view.inputmethod.InputMethodManager;
import android.view.WindowManager;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.PopupWindow;
public class MainActivity extends FragmentActivity
{
private View parent;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
parent = getLayoutInflater().inflate(R.layout.activity_main, null);
setContentView(parent);
final Button button1 = (Button) findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
ListView contentView=new ListView(MainActivity.this);
String[] objects=new String[8];
for (int i = 0; i < objects.length; i++)
{
objects[i]="hello how do you do !!!"+i;
}
contentView.setAdapter(new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, objects));
PopupWindow popupWindow = new PopupWindow(contentView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
//点击外部隐藏
popupWindow.setOutsideTouchable(true);
//点击外部隐藏........不能少,少了不起作用.........
popupWindow.setBackgroundDrawable(new BitmapDrawable());
popupWindow.setAnimationStyle(R.style.popwin_anim_style);
popupWindow.showAsDropDown(button1);
}
});
iniBt2();
iniBt3();
}
private void iniBt3() {
findViewById(R.id.button3).setOnClickListener(new OnClickListener() {
private PopupWindow popupWindow;
@Override
public void onClick(View v) {
ListView contentView=new ListView(MainActivity.this);
String[] objects=new String[8];
for (int i = 0; i < objects.length; i++)
{
objects[i]="hello how do you do !!!"+i;
}
contentView.setAdapter(new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, objects));
contentView.setFocusableInTouchMode(true);
contentView.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if(event.getAction()==KeyEvent.ACTION_DOWN && keyCode==KeyEvent.KEYCODE_BACK){
popupWindow.dismiss();
}
return true;
}
});
popupWindow = new PopupWindow(contentView, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, true);
//点击外部隐藏
//popupWindow.setOutsideTouchable(true);
//点击外部隐藏........不能少,少了不起作用.........
//popupWindow.setBackgroundDrawable(new BitmapDrawable());
popupWindow.setAnimationStyle(R.style.popwin_anim_style);
popupWindow.showAtLocation(parent, Gravity.TOP, 0, 0);
}
});
}
private void iniBt2()
{
findViewById(R.id.button2).setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
View contentView=getLayoutInflater().inflate(R.layout.submit_message, null);
PopupWindow popupWindow = new PopupWindow(contentView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
//点击外部隐藏............
popupWindow.setOutsideTouchable(true);
//点击外部隐藏............
popupWindow.setBackgroundDrawable(new BitmapDrawable());
//软键盘不会挡着popupwindow
popupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
popupWindow.showAtLocation(parent, Gravity.BOTTOM, 0, 0);
//显示键盘
InputMethodManager systemService = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
systemService.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
}
});
}
}
R.layout.activity_main:
<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="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
</LinearLayout>
R.layout.submit_message:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/editText1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="subMit" />
</LinearLayout>
相关推荐
本文将深入解析Android PopupWindow的使用方法及其在不同场景下的应用。 首先,PopupWindow的基本用法分为三个主要步骤: 1. 创建PopupWindow对象实例。这通常通过传入一个View对象来实现,这个View将作为...
在代码实现中,首先需要通过LayoutInflater将XML布局文件转换为View对象,然后使用`PopupWindow`的构造函数创建一个`PopupWindow`实例,传入View对象、宽度和高度。你可以选择是否使`PopupWindow`具有触摸外部区域...
在本文中,我们将深入探讨PopupWindow的使用方法,并通过实例代码来展示其核心功能。 1. **PopupWindow的基本概念** PopupWindow并非是一个真正的Activity或Dialog,而是基于View的一种弹出窗口。它可以悬浮于当前...
该项目演示了,PopupWindow的基本使用,相关PopupWindow代码有独立的Class文件,并且有大量的注释说明。实现的功能有弹出的PopupWindow上有EditText能与软键盘并存不冲突,弹出PopupWindow的时候背景自动改变灰度为...
下面将详细讲解PopupWindow的使用方法及其相关知识点。 首先,创建PopupWindow的基本步骤如下: 1. **初始化PopupWindow**: 首先需要创建一个PopupWindow实例,传入一个View作为内容视图,以及宽度和高度。例如...
通过阅读和理解这些代码,将有助于加深对PopupWindow用法的理解,并能灵活运用到自己的项目中。 总之,PopupWindow是Android开发中的一种强大工具,掌握其基本用法和各种定制技巧,能帮助我们创建出更美观、易用的...
本篇文章将详细介绍如何在Android应用中使用PopupWindow,并通过一个具体的案例来演示其基本用法。 首先,PopupWindow是Android SDK提供的一种轻量级的弹窗组件,相比Dialog,它的创建和显示更加灵活。PopupWindow...
下面将详细介绍`PopupWindow`的使用方法及其相关知识点。 首先,`PopupWindow`的创建需要三个基本元素:一个View(内容视图)、一个宽度和一个高度。通常,内容视图是自定义布局,包含了你想要在弹出窗口中展示的...
此外,PopupWindow还有其他高级用法,如调整其触摸事件的分发,使其与底层View交互,或者在PopupWindow中添加滚动视图等。这些内容可能会在博客的后续部分进行深入探讨。 通过阅读博客和研究源码,开发者可以更熟练...
本文实例为大家分享了android popupwindow的用法,供大家参考,具体内容如下 一、基本用法 一般做法,新建类继承popupwindow。例 /** * popupwindow基本用法 * Created by Administrator on 2015/11/25. */ ...
PopupWindow 使用方法详解 PopupWindow 是 Android 中一种常用的 UI 控件,用于显示浮动窗口,例如弹出菜单、提示框、选择框等。下面将详细介绍 PopupWindow 的使用方法。 一、PopupWindow 的布局 首先,需要...
在描述中提到的博客链接虽然无法直接访问,但根据常见的PopupWindow用法,我们可以讨论以下关键知识点: 1. **PopupWindow的基本使用**: - 创建PopupWindow实例时,需要传入一个View,这是PopupWindow的内容视图...
下面将详细介绍PopupWindow的使用方法、特性以及常见应用场景。 1. **PopupWindow的基本结构** PopupWindow主要由三部分组成:内容视图(ContentView)、背景(Background)和锚点(Anchor View)。内容视图是你想...
这只是一个基础的PopupWindow用法,实际开发中还可以根据需要添加动画效果、调整弹出位置、处理触摸事件等多种功能,以实现更加复杂的交互体验。 总之,PopupWindow是Android开发中非常实用的一个工具,通过自定义...
在 `onClick` 方法中,我们将 `PopupWindow` 显示在按钮上方: ```java public void showPopupWindow(View view) { // ... popupWindow.showAsDropDown(view, 0, -view.getHeight()); // 显示在按钮上方 } ``` 5...
本篇文章将深入探讨PopupWindow的基本概念、使用方法以及在实际开发中的应用。 首先,PopupWindow的核心在于它的三个基本属性:内容视图(content view)、宽度(width)和高度(height)。内容视图是你希望在...