我有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
与我指定的RelativeLayout
和width
相同。
感谢...
答案 0 :(得分:2)
您的RelativeLayout
有height
25dp
和padding
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}}和5dp
。 TextView
对于文字大小为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}}