4

ボタンの横に小さなカウンターを追加して、一部のアイテムの残りの数量を表示したいと思います。たとえば、未使用のヒントの残りの数です。対象となるレイアウトは次のようになります。

ここに画像の説明を入力

質問:

ウェブを調べたところ、数量ごとに異なる写真を使用するように言う人がいることがわかりました. しかし、数量が 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>

4

3 に答える 3

2

これを使用して、テキストビューのテキストをカウントで更新し続けます

 <FrameLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">

 <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:src="@drawable/your_phone_call_image"
     android:gravity="center"
     android:scaletype="matrix"/>

  <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="1"
     android:padding="5dp"
     android:gravity="top|right"  <!--this is important-->
     android:background="@drawable/your_counter_red_background"/>
 </FrameLayout>
于 2013-09-25T16:25:45.257 に答える