Android Wear CircledImageView(和DelayedConfirmationView)始终为正方形
作者:互联网
每当我尝试使用CircledImageView(我在LG G Watch上开发)时,我的图像背景都是正方形的.使用DelayedConfirmationView可以得到相同的结果,而且没有“倒数动画”.
解决方法:
舍入的问题是我在dp中指定了layout_width和layout_height而不是使用wrap_content.
“倒数”动画的问题在于,需要指定边框的宽度和颜色.
编辑:这是我正在使用的示例(应用程序在xmlns:android下定义为xmlns:app =“ http://schemas.android.com/apk/res-auto”):
<android.support.wearable.view.CircledImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_action_call"
app:circle_color="@color/green"
app:circle_radius="30dp"
app:circle_radius_pressed="40dp"/>
在属性方面,我使用Intellij / AS自动完成它们.如果您没有使用任何一个IDE,那么属性几乎与方法名称相对应,因此您可以从那里进行匹配.
标签:wear-os,android-view,android 来源: https://codeday.me/bug/20191029/1959421.html