TextView
アクションバーのアイコンに(カウントを表示するために)カーソルを合わせたい。私がやったことはRelativeLayout
、背景を設定し、それをTextView
そのレイアウトに配置し、余白が収まるまでねじ込みますが、テキストの長さが変わるとすぐに壊れます。TextView
アイコンに対してテキストを配置できないため、背景を設定することもできません。
これが私のXMLです:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_gravity="fill_horizontal" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/cart" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:layout_marginTop="5dp" android:layout_marginLeft="43dp"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout> </RelativeLayout>
これが私が何を意味するかを示すスクリーンショットです:
TextViewが常に中央に配置/配置さTextView
れるように、ストレスのない方法、おそらくライブラリを設定できますか?Drawable