TextView不会在RelativeLayout中显示

时间:2015-02-23 18:58:03

标签: android xml textview android-relativelayout

我有TextView正常工作,但如果我尝试在TextView中显示RelativeLayout则不会显示。(“//此部分开头和结尾”)

我的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:materialdesign="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFF"
android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/relativeLayoutMain"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

    <com.gc.materialdesign.views.ScrollView
        android:id="@+id/scroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/relativeLayoutContent">

        <RelativeLayout
            android:id="@+id/relativeLayoutContainer"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">

            <com.gc.materialdesign.views.LayoutRipple
                android:id="@+id/itemSimple"
                android:layout_width="fill_parent"
                android:layout_height="64dp"
                android:background="#FFF"
                android:clickable="true">

                <!--this section - begin-->
                <RelativeLayout
                    android:layout_width="90dp"
                    android:layout_height="25dp"
                    android:layout_alignParentRight="true"
                    android:background="#e91e63"
                    android:paddingBottom="20dp">

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentRight="true"
                        android:gravity="center_horizontal"
                        android:layout_marginRight="7dp"
                        android:text="sample text"
                        android:textColor="#727272"
                        android:textSize="17dp"/>

                </RelativeLayout>
                <!--this section - end-->

            </com.gc.materialdesign.views.LayoutRipple>

        </RelativeLayout>

    </com.gc.materialdesign.views.ScrollView>

    </RelativeLayout>

</LinearLayout>

如果我希望此代码有效,我必须为width的{​​{1}}和height定义更多空间,但我不想要。我希望我的RelativeLayout与我指定的RelativeLayoutwidth相同。

感谢...

2 个答案:

答案 0 :(得分:2)

您的RelativeLayoutheight 25dppadding 20dp。意味着文本只剩下5dp - 不足以显示字符。您需要降低padding或增加height

<!--this section - begin-->
<RelativeLayout
    android:layout_width="90dp"
    android:layout_height="25dp"    <--------------------------------
    android:layout_alignParentRight="true"
    android:background="#e91e63"
    android:paddingBottom="20dp">   <--------------------------------

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:gravity="center_horizontal"
        android:layout_marginRight="7dp"
        android:text="sample text"
        android:textColor="#727272"
        android:textSize="17dp"/>

</RelativeLayout>
<!--this section - end-->

答案 1 :(得分:1)

您无法为RelativeLayout使用这些高度和宽度值,并且只是解释:您正在25dp使用height RelativeLayout 20dp对于padding-bottom,1}}和5dpTextView对于文字大小为17dp的{​​{1}}来说还不够RelativeLayout。现在决定权归你所有。您可以从height删除填充底部,或者增加textSize或减少<RelativeLayout android:layout_width="90dp" android:layout_height="25dp" android:layout_alignParentRight="true" android:background="#e91e63"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:gravity="center_horizontal" android:layout_marginRight="7dp" android:text="sample text" android:textColor="#727272" android:textSize="17dp"/> </RelativeLayout> 。我认为删除填充是最好的解决方案:

{{1}}