Это довольно странная проблема, которую я не могу решить, независимо от того, сколько раз на нее смотрю (так что, вероятно, у нее есть очевидный ответ). Проблема в том, что когда у меня есть RelativeLayout
/ ActionBar
в макете XML
doc, нижеприведенное ListView
не будет отображаться на экране при отладке. Вот мой XML
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:background="#4a8bcc" android:id="@+id/relLayout" >
<TextView
android:layout_width="wrap_content"
android:layout_centerVertical="true"
android:textSize="7pt"
android:textColor="#ffffff"
android:textStyle="bold"
android:layout_height="wrap_content"
android:text="List" android:padding="8dp" />
<!-- A dividing line -->
<ImageView
android:layout_width="1px"
android:src="#ffffffff"
android:layout_height="wrap_content"
android:text="@string/hello"
android:id="@+id/bordertwo"
android:layout_toLeftOf="@+id/refresh"
android:layout_marginRight="12dip"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true" />
<!-- share button -->
<ImageView
android:layout_width="25dip"
android:src="@drawable/ic_title_share_default"
android:layout_height="25dip"
android:text="@string/hello"
android:layout_marginRight="12dip"
android:layout_centerVertical="true"
android:id="@+id/refresh"
android:layout_toLeftOf="@+id/borderone"
android:scaleType="fitXY" />
<!-- A dividing line -->
<ImageView
android:layout_width="wrap_content"
android:src="#ffffffff"
android:layout_height="wrap_content"
android:id="@+id/borderone"
android:layout_alignParentTop="true"
android:layout_marginRight="12dip"
android:layout_alignParentBottom="true"
android:layout_alignBottom="@+id/search"
android:text="@string/hello"
android:layout_toLeftOf="@+id/search" />
<!-- Add friend -->
<ImageView
android:src="@drawable/ic_title_add_default"
android:text="@string/hello"
android:layout_width="25dip"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:id="@+id/search"
android:layout_marginRight="12dip"
android:layout_height="25dip"
android:scaleType="fitXY" />
</RelativeLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#4a8bcc" android:id="@+id/linLayout"
android:visibility="visible">
<ListView
android:id="@+id/ListView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
</LinearLayout>