我在xml中具有以下視圖。我在頂部是一個橫幅文本視圖。然後我有一個列表視圖,它包含消息和另一個包含字符串「沒有消息」的textview。如何將textview居中在linearlayout中
在運行時我檢查數據庫中是否有任何消息。如果沒有,那麼我隱藏listview並顯示textviewn消息。
我希望textviewnomessages在視圖的中心,而不是橫幅。我怎樣才能指定textviewnomessages在屏幕的中心。感謝
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/carefreebgscaled"
android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:id="@+id/textviewmessageslabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@color/blue_alpha_background"
android:text="Messages"
android:textColor="#FFFFFF"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
android:id="@+id/listviewmessages"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ccffffff"
android:cacheColorHint="#0000"
android:padding="5dp" >
</ListView>
<TextView
android:id="@+id/textviewnomessageslabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="You have no messages."
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#0000FF" />
</LinearLayout>
[編輯1]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/carefreebgscaled" >
<TextView
android:id="@+id/textviewmessageslabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@color/blue_alpha_background"
android:text="Messages"
android:textColor="#FFFFFF"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
android:id="@+id/listviewmessages"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ccffffff"
android:cacheColorHint="#0000"
android:padding="5dp" >
</ListView>
<TextView
android:id="@+id/textviewnomessageslabel"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="You have no messages."
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#0000FF"
android:layout_centerInParent="true" />
</RelativeLayout>
第二個textview現在在橫幅的頂部。編輯1是我現在擁有的。我如何設置第二個textview到屏幕中心 – turtleboy
請參閱我的編輯解決方案 – Andros