私の相対レイアウトでは、円のビューとTextViewがあります。テキストビューをサークルビュー内に正確に配置したいと思います。それ、どうやったら出来るの?私がこれまで持っているコードは以下の通りです: Androidの別のビューの中にTextViewを配置する相対レイアウト
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<View
android:id="@+id/firstCircle"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginLeft="24dp"
android:layout_marginTop="24dp"
android:background="@drawable/circle" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:id="@+id/number1" />
</RelativeLayout>
は私が最終的な結果は次のようになりたい:、それは良い仕事します、以下のよう
ビュー内の – KrishnaJ
アンドロイドのTextViewを取る:重力=「センター」 – Rohit
アンドロイド:TextViewに –