顯示我有一個TextView
其正常工作,但如果我試圖表明TextView
在RelativeLayout
它不顯示。(「//本節開始和結束」)的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
和RelativeLayout
height
,但我不想。我希望我的RelativeLayout
與我指定的width
和height
一樣。
感謝...
對於文本視圖請嘗試將寬度和高度設置爲'match_parent'。看看會發生什麼 – 2015-02-23 19:01:22
在Relativelayout中只需添加'android:layout_below =「@ id/itemSimpleJelly」' – Psypher 2015-02-23 19:04:25
@Ranjith看起來'RelativeLayout'在id爲'itemSimpleJelly'的自定義視圖中。 – 2015-02-23 19:07:36