我想用頂部的工具欄建立一個ListView活動。此工具欄中最右邊的工具將是水平SlidingDrawer的處理程序,它將在其他工具之上提供滑動的EditText。 首先,我嘗試使用LinearLayout和FrameLayout來實現此功能,但滑塊的大小與可用空間減去工具總寬度一樣多。現在,我已經做了我想要的東西,並與以下佈局的偉大工程:相對佈局,SlidingDrawer和ListView
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout android:id="@+id/laytoptoolbarhost"
android:layout_width="fill_parent"
android:layout_height="55dip"
android:background="@drawable/toptoolbar_gradient"
android:padding="5dip">
<View android:id="@+id/tool10"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#00FF00"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true">
</View>
<View android:id="@+id/tool20"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#00FF00"
android:layout_toRightOf="@+id/tool10"
android:layout_centerVertical="true">
</View>
<View android:id="@+id/tool30"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#00FF00"
android:layout_toRightOf="@+id/tool20"
android:layout_centerVertical="true">
</View>
<SlidingDrawer android:id="@+id/slidesearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:handle="@+id/sliderhandle"
android:content="@+id/txtsearch">
<ImageView android:id="@+id/sliderhandle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/btn_collapse_states">
</ImageView>
<EditText android:id="@+id/txtsearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp">
</EditText>
</SlidingDrawer>
</RelativeLayout>
<ListView android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:drawSelectorOnTop="false"/>
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textSize="20sp"
android:text="@string/lbl_norecords"/>
的問題是,我必須把在RelativeLayout的機器人固定值:layout_height參數爲了這個工作。如果我放置「wrap_content」,那麼RelativeLayout會填充整個屏幕,而其他任何內容都不會顯示。
任何幫助高度讚賞
預先感謝您
這很奇怪,我懷疑其中一個孩子的身高正在引發這個問題,但他們都對我很好。有時相對佈局的東西會導致意想不到的後果。你有沒有嘗試過這與一個空的相對佈局(工具欄),或者我猜只是一個孩子,因爲它的高度將爲零,否則 – Idistic
我試過了,並且wrap_content值按預期工作。因此,我將逐個添加一個元素,以查看哪裏出錯。謝謝 – Christos
好的,當我添加SlidingDrawer時,RelativeLayout開始搞亂了。我真的被困在這裏... – Christos