我创建了一个椭圆形,并为每个高度和宽度设置了56px的尺寸。但我有一个椭圆形而不是圆形!当我将每个尺寸设置为78px时,我得到一个精确的圆圈!有人注意到或遇到过这个问题? 请解决方案!
clear_test.xml这给了我一个椭圆形状!布局中不同的高度和宽度
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#7caf00"/>
<size android:width="56px"
android:height="56px"/>
</shape>
calc_test.xml但是这给出了一个精确的圆
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#7caf00"/>
<size android:width="78px"
android:height="78px"/>
</shape>
答案 0 :(得分:0)
形状取决于视图的大小。设置此形状可绘制的视图应具有相同的大小
例如:
<view android:layout_width="56px" android:layout_height="56px" android:background="@drawable/clear_test"/>
注意: 你不应该使用px,总是使用dp / dip作为度量单位。(上面的例子有&#34; px&#34;,所以它匹配你的xml代码)