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

溫馨提示×

溫馨提示×

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

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

Android仿微信網絡加載彈出框

發布時間:2020-09-25 13:58:54 來源:腳本之家 閱讀:185 作者:AND_Devil 欄目:移動開發

本文實例為大家分享了Android仿微信網絡加載彈出框的具體代碼,供大家參考,具體內容如下

沒有餓了么的動畫效果好看,但是,特別適用,拿來就用!

看一下效果圖

Android仿微信網絡加載彈出框

圖片素材

Android仿微信網絡加載彈出框

好了,其實很簡單,就是一個自定義Dialog的控件而已

1. 自定義view的style樣式

<resources>

  <!-- Base application theme. -->
  <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
  </style>
  <!-- 自定義dialog的樣式 -->
  <style name="CustomDialog">
    <item name="android:windowFrame">@null</item><!--邊框-->
    <item name="android:windowIsFloating">true</item><!--是否浮現在activity之上-->
    <item name="android:windowIsTranslucent">false</item><!--半透明-->
    <item name="android:windowNoTitle">true</item><!--無標題-->
    <item name="android:windowBackground">@drawable/dialog_custom_bg</item><!--背景透明-->
    <item name="android:backgroundDimEnabled">false</item><!--模糊-->
    <item name="android:backgroundDimAmount">0.6</item>
  </style>


</resources>

2.dialog_custom_bg 加載動畫shape背景圖(drawable文件夾下)

<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <solid android:color="#ff333333" />
  <corners android:radius="5dp" />
</shape>

3.indeterminate_drawable 進度條模糊背景圖(drawable文件夾下)

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
  android:drawable="@drawable/loading"
  android:fromDegrees="0"
  android:pivotX="50%"
  android:pivotY="50%"
  android:toDegrees="360">
</rotate>

4.加載對話框的背景

<!-- 加載對話框布局 -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:orientation="horizontal"
  android:padding="10dp">

  <ProgressBar
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:indeterminateDrawable="@drawable/indeterminate_drawable"
    android:indeterminateDuration="1800" />

  <TextView
    android:id="@+id/tvcontent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:text="加載中"
    android:textColor="#ffffff"
    android:textSize="14sp" />

</LinearLayout>

5.CustomDialog自定義控件

public class CustomDialog extends Dialog {
  private String content;

  public CustomDialog(Context context, String content) {
    super(context, R.style.CustomDialog);
    this.content=content;
    initView();
  }

  @Override
  public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (keyCode){
      case KeyEvent.KEYCODE_BACK:
        if(CustomDialog.this.isShowing())
          CustomDialog.this.dismiss();
        break;
    }
    return true;
  }

  private void initView(){
    setContentView(R.layout.dialog_view);
    ((TextView)findViewById(R.id.tvcontent)).setText(content);
    setCanceledOnTouchOutside(true);
    WindowManager.LayoutParams attributes = getWindow().getAttributes();
    attributes.alpha=0.8f;
    getWindow().setAttributes(attributes);
    setCancelable(false);
  }
}

6.Activity中直接調用

CustomDialog customDialog = new CustomDialog(this, "正在加載...");
customDialog.show();//顯示,顯示時頁面不可點擊,只能點擊返回
customDialog.dismiss();//消失

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

连南| 当雄县| 余干县| 晴隆县| 龙陵县| 鹤壁市| 龙游县| 水富县| 长治市| 渝北区| 台北县| 雷山县| 五原县| 罗山县| 彝良县| 汉阴县| 馆陶县| 西峡县| 禹州市| 江安县| 共和县| 扶风县| 苍溪县| 桂林市| 大冶市| 微山县| 本溪市| 保亭| 祁东县| 定陶县| 东台市| 达拉特旗| 湘西| 靖宇县| 仲巴县| 顺昌县| 右玉县| 白银市| 武穴市| 图木舒克市| 赣州市|