溫馨提示×

溫馨提示×

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

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

Android開發(fā)如何使用PopupWindow實現(xiàn)加載等待界面

發(fā)布時間:2020-07-23 09:20:48 來源:億速云 閱讀:207 作者:小豬 欄目:移動開發(fā)

這篇文章主要為大家展示了Android開發(fā)如何使用PopupWindow實現(xiàn)加載等待界面,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

實現(xiàn)加載等待界面我用了兩種方式,一種是用PopupWindow實現(xiàn),另一種便是用Activity實現(xiàn)。用Activity實現(xiàn)方法請見我的另一篇博客:

Android 使用Activity實現(xiàn)加載等待界面

首先看效果:

Android開發(fā)如何使用PopupWindow實現(xiàn)加載等待界面

用PopupWindow實現(xiàn)此功能還是比較簡單的,首先我們寫一個布局,只有一個登錄按鈕,用于觸發(fā)等待界面:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_main"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 android:orientation="vertical"
 tools:context="com.toprs.myapplication.MainActivity">

 <Button
  android:text="登錄"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:onClick="loginClick"
  android:id="@+id/button2"/>
</LinearLayout>

然后為登錄按鈕添加監(jiān)聽事件:

package com.wang.myapplication;

import ...

public class MainActivity extends AppCompatActivity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
 }

 public void loginClick(View v){
  final PopupWindow popupWindow = new PopupWindow();
  popupWindow.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
  popupWindow.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);
  popupWindow.setFocusable(true);
  View view = LayoutInflater.from(this).inflate(R.layout.popup,null);
  popupWindow.setContentView(view);
  popupWindow.showAtLocation(getWindow().getDecorView(), Gravity.CENTER,0,0);

  new Handler().postDelayed(new Runnable() {
   @Override
   public void run() {
    Toast.makeText(MainActivity.this, "登錄成功", Toast.LENGTH_SHORT).show();
    popupWindow.dismiss();
   }
  },2000);
 }
}

其中彈出的PopupWindow需要一個布局,也就是簡單放入一個ProgressBar:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="200dp"
    android:layout_height="200dp">

 <ProgressBar
  android:id="@+id/progressBar4"
  
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"/>

</RelativeLayout>

大功告成,運行一下即可??!

以上就是關于Android開發(fā)如何使用PopupWindow實現(xiàn)加載等待界面的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

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

AI