我有一個包含數字1,2,3的textview ....我想圍繞數字有一個圓圈,沿着;安卓繪製圓和文本視圖上的文字環繞
<TextView
android:id="@+id/position"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="0.20"
android:textStyle="bold"
android:layout_gravity="center"
android:layout_margin="5dp"
android:background="@drawable/circlebg"
android:textSize="20dp"/>
我有一個xml背景文件,其中包含;
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<corners android:radius="10dip"/>
<stroke android:color="#ff0000" android:width="2dip"/>
<solid android:color="@android:color/transparent"/>
</shape>
這是的結果是;
我想知道的是我怎麼能得到這樣的結果是像顯示在第一個屏幕截圖。歡迎任何幫助。
爲什麼不給它修復高度和寬度的像素,比如50dp或任何適合你的尺寸。 –
刪除'layout_weight',作爲開始。然後根據@ULHASPATIL的建議給出寬度和高度的固定值 –