我有一個佈局,帶有id =「credit_wallet」的textview。TextView不能在佈局中顯示
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/md_brown_900"
android:orientation="vertical" >
<include
android:id="@+id/lay_include"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
layout="@layout/top_points_bar" />
<TextView
android:id="@+id/credit_wallet"
android:gravity="center"
android:textColor="@color/md_brown_700"
android:layout_marginTop="65dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
/>
<com.justfashion.Logo
android:id="@+id/logo"
android:text="Fashion Wallet"
android:gravity="center"
android:textSize="20dp"
android:textColor="@color/md_brown_700"
android:layout_marginTop="60dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
/>
<ListView
android:id="@+id/listearncredit"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="70dp"
android:layout_below="@+id/logo"
android:cacheColorHint="@color/AliceBlue"
android:textColor="@color/AntiqueWhite"
android:dividerHeight="0dp"
android:divider="@color/Aqua"/>
</RelativeLayout>
我的JAVA:
http://pastebin.com/raw/bgf4njkT
它不會顯示在credit_wallet值。哪裏不對?請幫助我們!
Btw。當我添加一些示例文本時,它正在顯示但不是該值。
你能提供一個截圖嗎? –
它可能是一個textColor問題。嘗試設置您的textColor相應 – HelloSadness
也爲什麼你使用android:layout_alignParentTop =「true」爲包含的佈局和TextView。似乎不是正確的做法。這可能會導致問題 –