ボタンの横に小さなカウンターを追加して、一部のアイテムの残りの数量を表示したいと思います。たとえば、未使用のヒントの残りの数です。対象となるレイアウトは次のようになります。
質問:
ウェブを調べたところ、数量ごとに異なる写真を使用するように言う人がいることがわかりました. しかし、数量が 100 まで可能である場合、どのように解決できるのでしょうか? そんなもの出す必要ある?
RelativeLayout
ユーザーが下のボタンを押すと、上のボタンが上下にカウントされるように2つのボタンをくっつけることを考えていますsetText
が、より良い解決策やインポートはありますか?
編集:
コードとアドバイスをくれた Rupesh に感謝します! 以下のように実装しました。しかし、赤い円のテキストビューをさらに右に移動する方法を知っていますか? 20 も赤い丸に正しく表示できません...
コード:
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp" >
<Button
android:id="@+id/button_tip"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="5dp"
android:background="@drawable/orange_btn"
android:onClick="button_tip_click"
android:text="Hello" />
<TextView
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_gravity="top|right"
android:background="@drawable/red_circle_btn"
android:gravity="center"
android:text="20"
android:textColor="@color/white"
android:textSize="8sp"
android:textStyle="bold" />
</FrameLayout>