這篇文章主要講解了Android如何使用DecorView實現對話框功能,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
我們提供的服務有:成都做網站、成都網站設計、微信公眾號開發、網站優化、網站認證、平遙ssl等。為近1000家企事業單位解決了網站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的平遙網站制作公司
如果還不知道DecorView,那也沒有什么關系 ^_^
先來看看實現的效果
實現的大致思路
[下面大量 代碼 ]
第一個對話框的實現
public class TipsDialog { private Activity activity; private View rootView; private TextView confirmTextView; private TextView cancelTextView; private TextView contentTextView; private boolean isShowing; public TipsDialog(Activity activity) { this.activity = activity; isShowing = false; rootView = LayoutInflater.from(activity).inflate(R.layout.view_tips_dialog,null); confirmTextView = (TextView) rootView.findViewById(R.id.view_tips_dialog_tv_confirm); cancelTextView = (TextView) rootView.findViewById(R.id.view_tips_dialog_tv_cancel); contentTextView = (TextView) rootView.findViewById(R.id.view_tips_dialog_tv_content); } public void show(){ if(activity == null){ return; } if(isShowing){ return; } ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView(); FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT); params.gravity = Gravity.CENTER; rootView.setLayoutParams(params); decorView.addView(rootView); rootView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { dismiss(); } }); RotateAnimation rotateAnimation = new RotateAnimation(0,720f,RotateAnimation.RELATIVE_TO_SELF,0.5f,RotateAnimation.RELATIVE_TO_SELF,0.5f); rotateAnimation.setDuration(2000); contentTextView.startAnimation(rotateAnimation); isShowing = true; } public void dismiss(){ if(!isShowing){ return; } isShowing = false; if(rootView.getParent() == null){ return; } ViewGroup parent = (ViewGroup) rootView.getParent(); parent.removeView(rootView); } public int getRandomColor(){ Random random = new Random(); return Color.argb(random.nextInt(200),random.nextInt(240),random.nextInt(240),random.nextInt(240)); } public boolean isShowing() { return isShowing; } }
其實就是show的時候將布局添加到DecorView上面去,dismiss的時候將布局從DecorView上面移除
提示的實現(沒有處理完善~~ 僅僅就是說明哈DecorView)
public class TopTipDialog { private Activity activity; private View rootView; private boolean isShowing; private static final int VIEW_HEIGHT = 64;//px public TopTipDialog(Activity activity) { this.activity = activity; rootView = LayoutInflater.from(activity).inflate(R.layout.view_top_tip_dialog,null); } public void show(){ if(isShowing){ return; } ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView(); FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, VIEW_HEIGHT); params.gravity = Gravity.TOP; params.setMargins(0,0,0,-VIEW_HEIGHT); rootView.setLayoutParams(params); TranslateAnimation translateAnimation = new TranslateAnimation(0,0,-VIEW_HEIGHT,0); translateAnimation.setDuration(1500); translateAnimation.setFillAfter(true); decorView.addView(rootView); rootView.startAnimation(translateAnimation); rootView.postDelayed(new Runnable() { @Override public void run() { TranslateAnimation translateAnimation1 = new TranslateAnimation(0,0,0,-VIEW_HEIGHT); translateAnimation1.setDuration(1500); translateAnimation1.setFillAfter(true); rootView.startAnimation(translateAnimation1); } },3000); } }
看完上述內容,是不是對Android如何使用DecorView實現對話框功能有進一步的了解,如果還想學習更多內容,歡迎關注創新互聯行業資訊頻道。
網頁標題:Android如何使用DecorView實現對話框功能
文章鏈接:http://vcdvsql.cn/article4/gjicoe.html
成都網站建設公司_創新互聯,為您提供網站營銷、品牌網站建設、靜態網站、軟件開發、域名注冊、定制開發
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯