91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android中怎么實現篩選菜單效果

發布時間:2021-08-09 17:02:50 來源:億速云 閱讀:156 作者:Leah 欄目:編程語言

android中怎么實現篩選菜單效果,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1、設置主題

一般設置如下

<style name="Translucent_NoTitle" parent="android:style/Theme.Dialog">  <item name="android:windowNoTitle">true</item>  <item name="android:background">#00000000</item>  <item name="android:windowBackground">@android:color/transparent</item>  <item name="android:windowAnimationStyle">@null</item>  <item name="android:windowIsFloating">true</item>  <item name="android:colorBackgroundCacheHint">@null</item>  <item name="android:windowIsTranslucent">true</item>  <item name="android:backgroundDimEnabled">false</item><span > </span>背景暗淡效果</style>

也可使用android.R.style.Theme_Panel和android.R.style.Theme_Light_Panel。android.R.style.Theme_Panel代碼如下,其與上面是一樣的。

<style name="Theme.Panel">  <item name="windowBackground">@color/transparent</item>  <item name="colorBackgroundCacheHint">@null</item>  <item name="windowFrame">@null</item>  <item name="windowContentOverlay">@null</item>  <item name="windowAnimationStyle">@null</item>  <item name="windowIsFloating">true</item>  <item name="backgroundDimEnabled">false</item>  <item name="windowIsTranslucent">true</item>  <item name="windowNoTitle">true</item></style>

2、設置內容的寬高

我們通過WindowManager.LayoutParams實現。

WindowManager.LayoutParams layoutParams = getWindow().getAttributes();  layoutParams.width = screenWidth;  layoutParams.height = contentHeight;  layoutParams.gravity = Gravity.TOP;  layoutParams.flags |= WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL; //不阻塞事件傳遞到后面的窗口  getWindow().setAttributes(layoutParams);

這里,設置layoutParams.flags |= WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL; 則后面窗口的按鈕可響應觸摸事件(例,HorizontalScrollView能橫向滾動)。

3、設置動畫

通過ValueAnimator實現。

enter = ValueAnimator.ofFloat(0, 1f).setDuration(350);  enter.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {   @Override   public void onAnimationUpdate(ValueAnimator animation) {    dialogContent.setTranslationY((1 - animation.getAnimatedFraction()) * -contentHeight);   }  });  out = ValueAnimator.ofFloat(0, 1f).setDuration(350);  out.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {   @Override   public void onAnimationUpdate(ValueAnimator animation) {    dialogContent.setTranslationY(animation.getAnimatedFraction() * -contentHeight);   }  });  out.addListener(new Animator.AnimatorListener() {   @Override   public void onAnimationStart(Animator animation) {   }   @Override   public void onAnimationEnd(Animator animation) {    dismiss();   }   @Override   public void onAnimationCancel(Animator animation) {   }   @Override   public void onAnimationRepeat(Animator animation) {   }  });

上面enter和out進行一系列設置,對out動畫加開始結束監聽。enter的start()方法在onStart()中調用

@Override protected void onStart() {  super.onStart();  dialogContent.post(new Runnable() {   @Override   public void run() {    enter.start();   }  }); }

通過view的post方式,enter.start()會在viewhierarchy(view樹)構建完后執行(即視圖構建完后執行)。view.post源碼:

public boolean post(Runnable action) {  final AttachInfo attachInfo = mAttachInfo;  if (attachInfo != null) {   return attachInfo.mHandler.post(action);  }  // Assume that post will succeed later  ViewRootImpl.getRunQueue().post(action);  return true; }

第七行為關鍵代碼,ViewRootImpl為視圖層級的頂部,實現了view和WindowManager之間的必要協議。RunQueue:運行隊列用來排入沒有handler關聯的view的以后工作。所以這里dialog的視圖顯示時會調用enter.start()方法.

監聽返回鍵:

@Override public boolean onKeyDown(int keyCode, KeyEvent event) {  if (keyCode == KeyEvent.KEYCODE_BACK) {   out.start();   return true;  }  return super.onKeyDown(keyCode, event); }

out動畫執行完后,onAnimationEnd中調用dismiss()方法。

4、在點擊的view下顯示出來

public void showAsDropView(View view) {  WindowManager.LayoutParams lp = getWindow().getAttributes();  lp.width = screenWidth;  int[] location = new int[2];  view.getLocationOnScreen(location);//  view.getLocationInWindow(location);<span > </span>這里跟上面一句的效果一樣,不知有什么區別  lp.y = location[1]-PhoneConstant.statusHeight+view.getHeight();  lp.gravity = Gravity.TOP;  getWindow().setAttributes(lp);  contentTop = location[1];  show(); }

PhoneConstant.statusHeight為狀態欄的高度,其通過反射獲取

//反射獲取狀態欄高度  Class<?> c = null;  Object obj = null;  Field field = null;  int x = 0, sbar = 0;  try {   c = Class.forName("com.android.internal.R$dimen");   obj = c.newInstance();   field = c.getField("status_bar_height");   x = Integer.parseInt(field.get(obj).toString());   PhoneConstant.statusHeight = getResources().getDimensionPixelSize(x);  } catch(Exception e1) {   e1.printStackTrace();  }

也可通過以下方式獲取

Rect outRect = new Rect();activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(outRect);

不過直接放在activity的onCreate中無效,只有界面繪制出來了才能獲取到,可通過view.post()方式獲取。

效果圖:

另外,繼承自AlertDialog的自定義dialog點擊edittext不彈出軟鍵盤,所以一般繼承自Dialog。

控制對話框輸入法的彈出,調用

代碼如下:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE|WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

看完上述內容,你們掌握android中怎么實現篩選菜單效果的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

渑池县| 绥阳县| 陕西省| 宁乡县| 随州市| 巴南区| 咸宁市| 柘荣县| 九江市| 高阳县| 布拖县| 上高县| 布尔津县| 天台县| 安新县| 大田县| 布拖县| 综艺| 芦山县| 紫云| 盱眙县| 泗水县| 甘孜县| 武宣县| 剑川县| 时尚| 嵊州市| 简阳市| 太康县| 梧州市| 阳春市| 丰都县| 五河县| 洮南市| 定南县| 句容市| 甘肃省| 什邡市| 南昌县| 屯门区| 南平市|