anndroid 模糊引导界面
先上两张图,后面补上代码
我们以前的写法是在需要显示模糊引导的地方,写一个布局,然后第一次使用的时候显示出来。但是这样做代码结构不清晰,所以我们有必要将这些View独立出来,写成一个自定义的View
public class ShowMemberTipsView extends BaseTipsView { @Bind(R.id.btn_sure) Button btnSure; @Bind(R.id.img_close) ImageView imgClose; private static final String UNIQUE_KEY = ShowMemberTipsView.class.getSimpleName(); private Context mContext; public ShowMemberTipsView(Context context) { super(context); this.mContext = context; init(); } public ShowMemberTipsView(Context context, AttributeSet attrs) { super(context, attrs); this.mContext = context; init(); } public ShowMemberTipsView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); this.mContext = context; init(); } @Override public String getUniquekey() { return UNIQUE_KEY; } private void init() { initLayoutParams(); addStatusBarView(); addContentView(); } private void initLayoutParams() { LayoutParams lp = new LayoutParams( LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT); setOrientation(VERTICAL); setLayoutParams(lp); } private void addContentView() { View view = inflate(mContext, R.layout.view_show_member_tips, null); ButterKnife.bind(this,view); addView(view); } @OnClick(R.id.btn_sure) public void sure() { if (mOnSureListener != null) { mOnSureListener.onSure(ShowMemberTipsView.this); } } @OnClick(R.id.img_close) public void close() { if (mOnCloseListener != null) { mOnCloseListener.onClose(ShowMemberTipsView.this); } } }
引用的布局:
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#E6000000"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="@dimen/topbar_layout_width" android:layout_marginTop="120dp" android:orientation="horizontal"> <RelativeLayout android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_gravity="center_vertical" android:layout_weight="1.0"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:src="@drawable/icon_more_mask_btn" /> </RelativeLayout> <View android:layout_width="1.0px" android:layout_height="fill_parent" android:layout_marginBottom="10.0dip" android:layout_marginTop="10.0dip" /> <View android:id="@+id/rl_task_center" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" /> </LinearLayout> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:layout_marginTop="20dp" android:src="@drawable/icon_more_mask_text" /> <Button android:id="@+id/btn_sure" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:layout_marginTop="20dp" android:background="@drawable/icon_more_mask_level_btn" /> <View android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"/> </LinearLayout> <ImageView android:id="@+id/img_close" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:layout_marginRight="20dp" android:layout_marginTop="20dp" android:padding="5dp" android:src="@drawable/icon_app_upgrade_close" /> </FrameLayout>
最后是一个BaseView,主要是封装一些公共的方法
public abstract class BaseTipsView extends LinearLayout { private static final String TAG = BaseTipsView.class.getSimpleName(); private String mUniqueKey; protected OnCloseListener mOnCloseListener; protected OnSureListener mOnSureListener; public BaseTipsView(Context context) { super(context); init(); } public BaseTipsView(Context context, AttributeSet attrs) { super(context, attrs); init(); } public BaseTipsView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(); } private void init() { mUniqueKey = getUniquekey(); if (TextUtils.isEmpty(mUniqueKey)) { throw new IllegalArgumentException("Uniquekey must not empty!"); } maskClick(); } //获取状态 protected void addStatusBarView() { View statusBarView = new View(getContext()); statusBarView.setBackgroundColor(getContext().getResources().getColor(R.color.line_color)); int statusBarHeight = getStatusBarHeight(); LayoutParams lp = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, statusBarHeight); statusBarView.setLayoutParams(lp); addView(statusBarView); } public abstract String getUniquekey(); private void maskClick() { this.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // 因此View背景透明,防止点击到此View后面的控件 } }); } public void show(final Activity activity) { if (!isMoreTipsShowed()) { addViewToDector(activity); setMoreTipsShowed(true); } } public void dismiss(final Activity activity) { removeViewFromDector(activity); } /** * 添加View到dectorView * @param activity */ private void addViewToDector(final Activity activity) { ViewGroup dectorView = (ViewGroup) activity.getWindow().getDecorView(); dectorView.addView(this); } /** * 从dectorView移出View * @param activity */ private void removeViewFromDector(final Activity activity) { ViewGroup dectorView = (ViewGroup) activity.getWindow().getDecorView(); dectorView.removeView(this); } public void setOnCloseListener(OnCloseListener onCloseListener) { this.mOnCloseListener = onCloseListener; } public void setOnSureListener(OnSureListener onSureListener) { this.mOnSureListener = onSureListener; } public interface OnCloseListener { public void onClose(BaseTipsView baseTipsView); } public interface OnSureListener { public void onSure(BaseTipsView baseTipsView); } protected boolean isMoreTipsShowed() { SharedPreferences sp = getContext().getSharedPreferences(TAG, Context.MODE_PRIVATE); return sp.getBoolean(mUniqueKey, false); } protected void setMoreTipsShowed(boolean isShowed) { SharedPreferences sp = getContext().getSharedPreferences(TAG, Context.MODE_PRIVATE); SharedPreferences.Editor editor = sp.edit(); editor.putBoolean(mUniqueKey, isShowed); editor.commit(); } public int getStatusBarHeight() { int result = 0; int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android"); if (resourceId > 0) { result = getResources().getDimensionPixelSize(resourceId); } return result; } }
最后附上源码下载地址:http://download.csdn.net/detail/xiangzhihong8/9549873
anndroid 模糊引导界面的更多相关文章
- App 引导界面
App 引导界面 1.前言 最近在学习实现App的引导界面,本篇文章对设计流程及需要注意的地方做一个浅显的总结. 附上项目链接,供和我水平类似的初学者参考——http://files.cnblogs. ...
- android——利用SharedPreference做引导界面
很久以前就接触过sharedPreference这个android中的存储介质.但是一直没有实际使用过,今天在看之前做的“民用机型大全”的app时,突然想到可以使用sharedPreference类来 ...
- 【Android UI设计与开发】第05期:引导界面(五)实现应用程序只启动一次引导界面
[Android UI设计与开发]第05期:引导界面(五)实现应用程序只启动一次引导界面 jingqing 发表于 2013-7-11 14:42:02 浏览(229501) 这篇文章算是对整个引导界 ...
- Android UI开发第四十一篇——墨迹天气3.0引导界面及动画实现
周末升级了墨迹天气,看着引导界面做的不错,模仿一下,可能与原作者的代码实现不一样,但是实现的效果还是差不多的.先分享一篇以前的文章,android动画的基础知识,<Android UI开发第十二 ...
- 【Android UI设计与开发】3.引导界面(三)实现应用程序只启动一次引导界面
大部分的引导界面基本上都是千篇一律的,只要熟练掌握了一个,基本上也就没什么好说的了,要想实现应用程序只启动一次引导界面这样的效果,只要使用SharedPreferences类,就会让程序变的非常简单, ...
- 【Android】首次进入应用时加载引导界面
参考文章: [1]http://blog.csdn.net/wsscy2004/article/details/7611529 [2]http://www.androidlearner.net/and ...
- SharedPreference 存储小量数据,一般首次启动显示引导界面就用这个。
写://添加一个SharedPreference并传入数据SharedPreference sharedPreferences = getSharedPreferences("share_d ...
- 转-ViewPager组件(仿微信引导界面)
http://www.cnblogs.com/lichenwei/p/3970053.html 这2天事情比较多,都没时间更新博客,趁周末,继续继续~ 今天来讲个比较新潮的组件——ViewPager ...
- 【笔记】WPF实现ViewPager引导界面效果及问题汇总
最近在开发项目的首次使用引导界面时,遇到了问题,引导界面类似于安卓手机ViewPager那样的效果,希望通过左右滑动手指来实现切换不同页面,其间伴随动画. 实现思路: 1.界面布局:新建一个UserC ...
随机推荐
- HOG OpenCV 代码片段
直接上代码: #include <opencv2/opencv.hpp> using namespace cv; #include <cmath> using namespac ...
- Low-rank approximations
Low-rank approximations Give matrix and a positive integer , we wish to find an matrix of rank at mo ...
- Rxjava +Retrofit 你需要掌握的几个技巧,Retrofit缓存,RxJava封装,统一对有无网络处理,异常处理, 返回结果问题
本文出处 :Tamic 文/ http://blog.csdn.net/sk719887916/article/details/52132106 Rxjava +Rterofit 需要掌握的几个技巧 ...
- VBA find方法
Sub Sample() Dim sfzs As New Collection Dim ws, wbs, dbs As Worksheet Dim r As Long Set ws = ThisWor ...
- 安卓Toast自定义及防止重复显示
Toast是安卓系统中,用户误操作时或某功能执行完毕时,对用户的一种提示,它没有焦点,并在一定时间内会消失,但用户连续误操作(如登录时,密码错误)多次时,则会有多个Toast被创建,系统会把这些toa ...
- Swift基础之对FMDB第三方的使用方法
相信大家都熟悉OC使用FMDB第三方库,进行数据库操作,增.删.改.查,现在我就来利用代码展示一下Swift对此库的使用方法,我是通过Pods添加的第三方库,如果手动添加记得创建桥接文件,在文件中调用 ...
- 1.使用C++封装一个链表类LinkList
使用C++封装一个链表类LinkList.写出相应一个测试用例 链表需要提供 添加 修改删除 除重 合并 排序创建 销毁等接口. 不能调用库函数或者使用STL等类库 题目延伸********** ...
- 今天我点亮了CSDN博客专家殊荣
很久以前,看着csdn博客学习第一篇博客时,我依旧记得,是一个名叫蒋老夫子的博客专家,文章写的非常认真.内心很崇拜.在想,若干年后,在哪个地方?以什么样的一种状态,也得到此殊荣,华为有句口号,叫勇敢做 ...
- MyBatis Generator For Eclipse 插件安装
由于在ORM框架MyBatis中,实现数据表于JavaBean映射时,配置的代码比较的复杂,所以为了加快开发的效率,MyBatis官方提供了一个Eclipse的插件, 我izuoyongjiushis ...
- (一〇六)iPad开发之UIPopoverController的使用
很多App里都有一种点击显示的悬浮气泡菜单,例如下图: 在iPad上可以使用UIPopoverController实现这个功能,popoverController继承自NSObject而不是UIVie ...