如何创建进度条,如下面的截图?

时间:2018-09-25 05:01:01

标签: android android-layout android-studio progress-bar

我想用可绘制的xml创建以下类型的圆形进度条

enter image description here

1 个答案:

答案 0 :(得分:1)

使用以上图像作为资源创建自定义ImageView。然后将其上带有rotate属性的ObjectAnimator应用于此对象。在您的应用中使用“查看进度”选项。在需要时显示/隐藏视图。

/* Margin:auto way */

.container {
  width: 100%;
}
.box-centered {
  width: 50%;
  height: 300px;
  margin: 0 auto;
  background-color: red;
}

/* Flexbox way */
.Aligner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Aligner-item {
  width: 50%;
  height: 300px;
  background: blue
}