文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android仿微信进度弹出框的实现方法

2022-06-06 04:55

关注

MainActivity:


package com.ruru.dialogproject; 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
public class MainActivity extends Activity implements Runnable { 
 LoadingDialog dialog; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  findViewById(R.id.btn_name).setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View view) { 
    dialog = new LoadingDialog(MainActivity.this); 
    dialog.setCanceledOnTouchOutside(false); 
    dialog.show(); 
    new Thread(MainActivity.this).start(); 
   } 
  }); 
 } 
 public void run() { 
  try { 
   Thread.sleep(5000); 
   dialog.dismiss(); 
  } catch (InterruptedException e) { 
   e.printStackTrace(); 
  } 
 } 
} 

activity_main:


<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 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" 
 tools:context="com.ruru.dialogproject.MainActivity"> 
 <Button 
  android:id="@+id/btn_name" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="Hello World!" /> 
</RelativeLayout>

LoadingDialog:


package com.ruru.dialogproject; 
import android.app.Dialog; 
import android.content.Context; 
import android.os.Bundle; 
import android.widget.LinearLayout; 
import android.widget.TextView; 
 
public class LoadingDialog extends Dialog { 
 private TextView tv; 
  
 public LoadingDialog(Context context) { 
  super(context, R.style.loadingDialogStyle); 
 } 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.dialog_loading); 
  tv = (TextView) findViewById(R.id.tv); 
  tv.setText("正在上传....."); 
  LinearLayout linearLayout = (LinearLayout) this.findViewById(R.id.LinearLayout); 
  linearLayout.getBackground().setAlpha(210); 
 } 
} 

dialog_loading:


<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:background="@android:color/transparent" 
 android:orientation="vertical"> 
 <LinearLayout 
  android:id="@+id/LinearLayout" 
  android:layout_width="160dp" 
  android:layout_height="160dp" 
  android:background="@drawable/yuanjiao" 
  android:gravity="center" 
  android:orientation="vertical"> 
  <ProgressBar 
   android:id="@+id/progressBar1" 
   style="?android:attr/progressBarStyleInverse" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:layout_gravity="center" 
   android:background="@android:color/transparent" /> 
  <TextView 
   android:id="@+id/tv" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:layout_gravity="center" 
   android:paddingTop="10dp" 
   android:textColor="#fff" /> 
 </LinearLayout> 
</LinearLayout> 

R.style.loadingDialogStyle:


<style name="loadingDialogStyle" parent="android:Theme.Dialog"> 
  <item name="android:windowBackground">@android:color/transparent</item><!--设置dialog的背景--> 
  <item name="android:windowFrame">@null</item><!--Dialog的windowFrame框为无--> 
  <item name="android:windowNoTitle">true</item><!--是否显示title--> 
  <item name="android:windowIsFloating">true</item><!--是否浮现在activity之上--> 
  <item name="android:windowIsTranslucent">true</item><!--是否半透明--> 
  <item name="android:windowContentOverlay">@null</item><!--是否半透明--> 
  <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item><!-- 对话框是否有遮盖 --> 
  <item name="android:backgroundDimEnabled">false</item><!--背景是否模糊显示--> 
  <item name="android:backgroundDimAmount">0.6</item><!--背景的灰度--> 
 </style> 

drawable-yuanjiao:


<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
 <solid android:color="#86222222" /> 
 <corners 
  android:bottomLeftRadius="10dp" 
  android:bottomRightRadius="10dp" 
  android:topLeftRadius="10dp" 
  android:topRightRadius="10dp" /> 
</shape>

效果:

关于样式:


<item name="android:windowFrame">@null</item> :Dialog的windowFrame框为无 
<item name="android:windowIsFloating">true</item>:是否浮现在activity之上 
<item name="android:windowIsTranslucent">false</item>:是否半透明 
<item name="android:windowNoTitle">true</item>:是否显示title 
<item name="android:windowBackground">@drawable/dia_bg</item>:设置dialog的背景 
<item name="android:backgroundDimEnabled">true</item>背景是否模糊显示 
<item name="android:backgroundDimAmount">0.6</item>背景的灰度 

Window attributes属性详解

颜色为:#393939

以上所述是小编给大家介绍的Android仿微信进度弹出框效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程网网站的支持!

您可能感兴趣的文章:Android 多种简单的弹出框样式设置代码Android实现可输入数据的弹出框Android使用Dialog风格弹出框的Activityreact-native 封装选择弹出框示例(试用ios&android)Android中自定义PopupWindow实现弹出框并带有动画效果Android 仿微信朋友圈点赞和评论弹出框功能高仿IOS的Android弹出框Android编程实现仿QQ发表说说,上传照片及弹出框效果【附demo源码下载】Android自定义弹出框dialog效果Android自定义底部弹出框ButtomDialog


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯