Android:实现一种浮动选择菜单的效果

更新了一下我手机上的百阅软件,上面的浮动对话框选择很好看,就模仿了一下。先看一下运行效果。 更新了一下我手机上的百阅软件,上面的浮动对话框选择很好看,就模仿了一下。先看一下运行效果。

 主要原理是在dialog里扔进一个GridView,可以作为一个组件使用。源码如下

  

  对话框使用的layout:grid_dialog.xml

  

<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayoutxmlns:Android=""
android:id="@+id/layout_root"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<GridViewandroid:id="@+id/mygridview"
android:numColumns="3"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:verticalSpacing="20dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
>
</GridView>
</RelativeLayout>

  

  

  对话框列表中的项目layout:grid_item.xml

  

<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayoutxmlns:android=""
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
>

<ImageViewandroid:id="@+id/item_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
/>

<TextViewandroid:id="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/item_image"
android:layout_centerHorizontal="true"
android:text="@+id/item_text"/>

</RelativeLayout>

  自定义的对话框类:GridDialog.java

  

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;  

import android.app.Activity;
import android.app.Dialog;
import ntent.Context;
import ntent.Intent;
import android.view.Gravity;
import android.view.View;
import android.view.Window;
import android.view.WindowManager.LayoutParams;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.GridView;
import android.widget.SimpleAdapter;
import android.widget.Toast;  

publicclass GridDialog extends Dialog {  

private List<int[]> griditem = new ArrayList<int[]>();
    {
        griditem.add(newint[] { R.drawable.edit, R.string.edit });//图片资源,标题,可自己设定
        griditem.add(newint[] { R.drawable.delete, R.string.delete });
        griditem.add(newint[] { R.drawable.favsaddto, R.string.favsaddto });
        griditem.add(newint[] { R.drawable.favs, R.string.favs });
        griditem.add(newint[] { R.drawable.settings, R.string.settings });
        griditem.add(newint[] { R.drawable.sync, R.string.sync });
        griditem.add(newint[] { R.drawable.save, R.string.save });
        griditem.add(newint[] { R.drawable.search, R.string.search });
        griditem.add(newint[] { R.drawable.camera, R.string.camera });
    };  

private GridView gridview;  

public GridDialog(Context context, boolean cancelable,
            OnCancelListener cancelListener) {
super(context, cancelable, cancelListener);
    }  

public GridDialog(Context context, int theme) {
super(context, theme);
    }  

privatevoid initGrid() {
        List<Map<String, Object>> items = new ArrayList<Map<String, Object>>();  

for (int[] item : griditem) {
            Map<String, Object> map = new HashMap<String, Object>();
            map.put("image", item[0]);
            map.put("title", getContext().getString(item[1]));
            items.add(map);
        }  

        SimpleAdapter adapter = new SimpleAdapter(getContext(),
                items, // 列表内容
                R.layout.grid_item, new String[] { "title", "image" },
newint[] { em_text, em_image });  

        gridview = (GridView) findViewById(R.id.mygridview);
// 为GridView设置数据
        gridview.setAdapter(adapter);  

    }  

public GridDialog(Context context) {  

super(context);
        requestWindowFeature(Window.FEATURE_NO_TITLE); // 灭掉对话框标题,要放在setContentView前面否则会报错

        setContentView(R.layout.grid_dialog);  

        setCanceledOnTouchOutside(true);// 点击对话框外部取消对话框显示
        LayoutParams lp = getWindow().getAttributes();
        getWindow().setAttributes(lp);  

        getWindow().addFlags(LayoutParams.FLAG_BLUR_BEHIND);// 添加模糊效果

// 设置透明度,对话框透明(包括对话框中的内容)alpha在0.0f到1.0f之间。1.0完全不透明,0.0f完全透明
// lp.alpha = 0.5f;

        lp.dimAmount = 0.1f;// 设置对话框显示时的黑暗度,0.0f和1.0f之间,在我这里设置成0.0f会出现黑屏状态,求解。

        initGrid();// 添加表格按钮内容
    }  

/**
     * 绑定事件到指定的Activity上
     *
     * @param activity
     */
publicvoid bindEvent(Activity activity) {  

        setOwnerActivity(activity);// )把对话框附着到一个Activity上

        gridview.setOnItemClickListener(new OnItemClickListener() {  

publicvoid onItemClick(AdapterView<?> parent, View v,
int position, long id) {  

switch (position) {// position从0开始,GridView中按钮的位置
case0:
                    Toast.makeText(getContext(), "测试", Toast.LENGTH_SHORT)
                            .show();
break;
                }
            }
        });
    }
}  

  

上面的代码没有实现active的跳转。如果想实现跳转采用下面方法:、

privatevoid redirect(Class<?> cls) {
if (getOwnerActivity().getClass() != cls) {//如果不是对话框绑定的active则跳转
        dismiss();//关闭对话框
        Intent intent = new Intent();
        intent.setClass(getContext(), cls);
        getContext().startActivity(intent);//跳转
    }
}  

  

对话框调用方法:

publicclass MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       Button button=(Button) findViewById(R.id.Button01);
        button.setOnClickListener(new Button.OnClickListener(){
@Override
publicvoid onClick(View arg0) {
                GridDialog dialog=new GridDialog(MainActivity.this);
                dialog.bindEvent(MainActivity.this);  

                dialog.show();
            }  

        });
    }
}  
时间: 2024-10-17 21:22:19

Android:实现一种浮动选择菜单的效果的相关文章

Android实现下拉导航选择菜单效果【转载地址:http://www.cnblogs.com/hanyonglu/archive/2012/07/31/2617488.html】

本文介绍在Android中如何实现下拉导航选择菜单效果.   关于下拉导航选择菜单效果在新闻客户端中用的比较多,当然也可以用在其他的项目中,这样可以很方便的选择更多的菜单.我们可以让我们的应用顶部有左右滑动或进行切换的导航菜单,也可以为了增强用户体验在应用中添加这样的下拉导航选择菜单效果. 关于它的实现原理,其实也是挺简单的,就是使用PopupWindow来进行展现,在显示时控制其高度并配置以相应的动画效果.在PopupWindow中我使用GridView来控制里面的菜单项,每个菜单项对应相应的

Android实现下拉导航选择菜单效果(转)

本文转载自互联网 关于下拉导航选择菜单效果在新闻客户端中用的比较多,当然也可以用在其他的项目中,这样可以很方便的选择更多的菜单.我们可以让我们的应用顶部有左右滑动或进行切换的导航菜单,也可以为了增强用户体验在应用中添加这样的下拉导航选择菜单效果. 关于它的实现原理,其实也是挺简单的,就是使用PopupWindow来进行展现,在显示时控制其高度并配置以相应的动画效果.在PopupWindow中我使用GridView来控制里面的菜单项,每个菜单项对应相应的图片和文字.当然了,也有其他的实现方式.为了

【Android】android PopupWindow实现从底部弹出或滑出选择菜单或窗口

转载自:android PopupWindow实现从底部弹出或滑出选择菜单或窗口 Android PopupWindow的使用和分析 Popupwindow的使用 PopupWindow用法

Android的两种菜单

Android子菜单和选项菜单与上下文菜单的实现 菜单在Android开发中必不可少,可是要怎么实现各种菜单呢?是不是很头疼呢?下面我就来介绍一下: 1. 选项菜单和子菜单的实现 选项菜单:最常规的菜单,Android中把它叫做option menu.选项菜单最多只能显示6个菜单项,超过6个时,第6个菜单项会被系统替换为一个叫“更多”的子菜单,原来显示不下的菜单项都作为“更多”菜单的子菜单项. 子菜单:Android中点击了子菜单将弹出悬浮窗口显示子菜单项.子菜单不支持嵌套,即子菜单中不能再包括

Android界面编程——导航栏及菜单(六)

Android界面编程--导航栏及菜单 2.7导航栏及菜单 2.7.1  ActionBar ActionBar是Android3.0(API 11)开始增加的新特性,ActionBar出现在活动窗口的顶部,可以显示标题.icon.Actions按钮.可交互View,可实现应用程序级的导航,如图2.7-1所示 图2.7-1 其中 1. App icon: 主要用于展示App的Logo,如果当前界面不是一级界面,还可以展示返回航. 2.View Control: 用于切换不同的视图或者展示非交互信

Android进阶(二十八)上下文菜单ContextMenu使用案例

上下文菜单ContextMenu使用案例 前言 回顾之前的应用程序,发现之前创建的选项菜单无法显示了.按照正常逻辑来说,左图中在"商品信息"一栏中应该存在选项菜单,用户可进行分享等操作,但是现在此操作莫名其妙的消失了.写了个测试Demo,如中图所示,一切按照逻辑显示正常.怪就怪在项目中无法显示,起初设想是因为Android系统版本太高问题,但是在别的手机上测试之后发现问题依旧存在.难道是因为顶部Tab标题栏遮挡住了选项菜单的显示?继续测试,通过在别的没有Tab标题栏的页面测试选项菜单,

Android 实现形态各异的双向侧滑菜单 自定义控件来袭

1.概述 关于自定义控件侧滑已经写了两篇了~~今天决定把之前的单向改成双向,当然了,单纯的改动之前的代码也没意思,今天不仅 会把之前的单向改为双向,还会多添加一种侧滑效果,给大家带来若干种形态各异的双向侧滑菜单,不过请放心,代码会很简单~~然后根据这若干种,只要你喜 欢,相信你可以打造任何绚(bian)丽(tai)效果的双向侧滑菜单~~ 首先回顾一下,之前写过的各种侧滑菜单,为了不占据篇幅,就不贴图片了: 1.最普通的侧滑效果,请参考:Android 自定义控件打造史上最简单的侧滑菜单 2.仿Q

Android 高仿 QQ5.0 侧滑菜单效果 自定义控件来袭【学习鸿洋_视频博客笔记总结】

学习鸿洋博客:http://blog.csdn.net/lmj623565791/article/details/39257409 学习鸿洋视频:慕课网视频 看看Android 高仿 QQ5.0 侧滑菜单效果 自定义控件实现效果: 技术上,继承HorizontalScrollView 加上自定义ViewGroup来实现: 1.onMeasure:决定内部View(子View)的宽和高,以及自己的宽和高 2.onLayout:决定子View的放置位置 3.onTouchEvent[监听动作] 自定

Android 实现自定义的卫星式菜单(弧形菜单)View

一.总述 Android 实现卫星式菜单也叫弧形菜单的主要要做的工作如下:1.动画的处理2.自定义ViewGroup来实现卫星式菜单View (1)自定义属性       a. 在attrs.xml中定义属性       b. 在布局中使用自定义属性       c. 在自定义View中读取布局文件中的自定义属性 (2)onMeasure 测量 child 即测量主按钮以及菜单项 (3)onLayout 布局 child 即布局主按钮以及菜单项 (4)设置主按钮的选择动画       a.为菜单