答案 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
}