TextView隐藏在Button后面

时间:2015-11-05 07:43:56

标签: android android-layout

我使用RelativeLayout在我们的xml中显示带有TextView(计数)的carticon。

代码:

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:background="@color/primary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <Button
        android:layout_width="65dip"
        android:layout_height="65dip"
        android:id="@+id/showevents"
        android:layout_gravity="right"
        android:textSize="12sp"
        android:background="@drawable/cart"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_margin="0dp"
        android:textColor="#000000"/>
    <TextView
        android:id="@+id/textOne"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/showevents"
        android:layout_alignRight="@id/showevents"
        android:layout_marginRight="5dp"
        android:layout_marginTop="5dp"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:text=""
        android:textColor="#FFF"
        android:textSize="16sp"
        android:textStyle="bold"
        android:background="@drawable/badge_circle"/>
</RelativeLayout>

如何在按钮上方显示TextView(右侧)? 现在我们的TextView显示在购物车图标后面 任何帮助将不胜感激

3 个答案:

答案 0 :(得分:0)

我试过这种方式..它显示完美

<RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/carticon"
            android:layout_marginRight="15dp"
            android:layout_marginTop="10dp"
            android:id="@+id/relcarts"
            android:layout_gravity="right"
            android:layout_alignParentRight="true">

            <TextView
                android:layout_width="19dp"
                android:layout_height="wrap_content"
                android:background="@drawable/cart_counter_bg"
                android:text="0"
                android:id="@+id/cartcountrs"
                android:textColor="@android:color/white"
                android:gravity="center_vertical|center_horizontal"
                android:layout_marginLeft="15dp"
                />
        </RelativeLayout>

答案 1 :(得分:0)

尝试这种方式:

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:background="@color/primary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
    <Button
        android:layout_width="65dip"
        android:layout_height="65dip"
        android:id="@+id/showevents"
        android:layout_gravity="right"
        android:textSize="12sp"
        android:background="@drawable/cart"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_margin="0dp"
        android:textColor="#000000"
    />
    <TextView
        android:id="@+id/textOne"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@id/showevents"
        android:layout_alignRight="@id/showevents"
        android:layout_marginRight="5dp"
        android:layout_marginTop="5dp"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:text=""
        android:textColor="#FFF"
        android:textSize="16sp"
        android:textStyle="bold"
        android:background="@drawable/badge_circle"
    />
</RelativeLayout>

我只是将android:layout_alignTop="@id/showevents"替换为android:layout_above="@id/showevents"

答案 2 :(得分:0)

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

    <TextView
            android:id="@+id/textOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignTop="@id/showevents"
            android:layout_alignRight="@id/showevents"
            android:layout_marginRight="5dp"
            android:layout_gravity="right"
            android:background="@drawable/badge_circle"
            android:layout_marginTop="5dp"
            android:paddingBottom="1dp"
            android:paddingLeft="4dp"
            android:paddingRight="4dp"
            android:text=""
            android:textColor="#FFF"
            android:textSize="16sp"
            android:textStyle="bold"/>
    <Button
            android:layout_width="65dip"
            android:layout_height="65dip"
            android:id="@+id/showevents"
            android:layout_gravity="right"
            android:textSize="12sp"
            android:background="@drawable/cart"
            android:layout_alignParentEnd="true"
            android:layout_alignParentRight="true"
            android:layout_margin="0dp"
            android:textColor="#000000"/>
</LinearLayout>