0

我试图在文本的末尾放置一个徽章,textview但是当我在我的设备上运行示例时,徽章会按textview大小包装。我想要它的右下角的textview长度。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app1="http://schemas.android.com/apk/res/socialbible.reef"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:clickable="false"
        android:focusable="false"
        android:paddingLeft="@dimen/ten_dp" >

        <TextView
            android:id="@+id/txNumber"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginRight="@dimen/one_dp"
            android:clickable="false"
            android:focusable="false"
            android:text="60"
            android:textColor="@color/black"
            android:textSize="16sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/myButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="false"
            android:layout_toRightOf="@+id/txNumber"
            android:background="@color/transparent"
            android:clickable="false"
            android:focusable="false"
            android:gravity="top"
            android:paddingBottom="@dimen/six_dp"
            android:text="1111111111111111" />

        <TextView
            android:id="@+id/txCommentaires"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/myButton"
            android:layout_alignParentBottom="false"
            android:layout_alignRight="@+id/myButton"
            android:layout_marginLeft="@dimen/ten_dp"
            android:background="@drawable/badge_circle"
            android:clickable="false"
            android:focusable="false"
            android:paddingLeft="@dimen/six_dp"
            android:paddingRight="@dimen/six_dp"
            android:text="10"
            android:textColor="#FFF"
            android:textSize="16sp"
            android:textStyle="bold" />

    </RelativeLayout>

在此处输入图像描述

4

2 回答 2

0

我试过了,它工作。

在此处输入图像描述

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app1="http://schemas.android.com/apk/res/socialbible.reef"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#FFFFFF"
        android:clickable="false"
        android:focusable="false"
        android:paddingLeft="10dp" >

        <TextView
            android:id="@+id/txNumber"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginRight="1dp"
            android:clickable="false"
            android:focusable="false"
            android:text="60"
            android:textColor="#000000"
            android:textSize="16sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/myButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="false"
            android:layout_toRightOf="@+id/txNumber"

            android:clickable="false"
            android:focusable="false"
            android:gravity="top"
            android:paddingBottom="6dp"
            android:text="1111111111111111gggggggggggggggggggggggggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhh" />

        <TextView
            android:id="@+id/txCommentaires"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/myButton"
            android:layout_alignParentBottom="false"
            android:layout_alignRight="@+id/myButton"
            android:layout_marginLeft="10dp"
            android:clickable="false"
            android:focusable="false"
            android:paddingLeft="6dp"
            android:paddingRight="6dp"
            android:text="10"
            android:textColor="#333333"
            android:textSize="16sp"
            android:textStyle="bold" />

    </RelativeLayout>
于 2013-10-16T15:20:02.953 回答
0

尝试这个

<TextView
    android:id="@+id/txCommentaires"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/myButton"
    android:layout_toRightOf="@+id/myButton"
    android:clickable="false"
    android:focusable="false"
    android:background="@drawable/badge_circle"
    android:text="10"
    android:textColor="#FFF"
    android:textSize="16sp"
    android:textStyle="bold" />
于 2013-10-16T11:09:32.903 回答