我正在尝试使用顶部的工具栏构建ListView Activity。此工具栏中最右边的工具将是水平SlidingDrawer的处理程序,它将在其他工具之上提供滑动EditText。 首先,我尝试使用LinearLayout和FrameLayout实现此功能,但滑块的大小与可用空间减去工具总宽度相同。现在我已经完成了我想要的工作并且使用以下布局效果很好:
<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 android:layout_height参数中放置一个固定值才能使其正常工作。如果我放置“wrap_content”,则RelativeLayout将填满整个屏幕,并且不会显示任何其他内容。
对此有任何帮助表示高度赞赏
提前谢谢
答案 0 :(得分:2)
从相对布局中的视图中删除android:layout_centerVertical="true"
。我还对滑块进行了一些更改,以达到您想要的效果。滑块的关键变化是:
添加:android:layout_alignTop="@+id/tool30"
和android:layout_alignBottom="@+id/tool30"
删除android:layout_alignParentRight="true"
和
android:layout_centerVertical="true"
在调试布局时,我在其他地方进行了一些其他的外观修改。
<?xml version="1.0" encoding="utf-8"?>
<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="wrap_content"
android:padding="5dip"
android:layout_weight="0">
<View
android:id="@+id/tool10"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#00FF00"
android:layout_alignParentLeft="true"
>
</View>
<View
android:id="@+id/tool20"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#FFFF00"
android:layout_toRightOf="@+id/tool10"
>
</View>
<View
android:id="@+id/tool30"
android:layout_width="32dip"
android:layout_height="32dip"
android:paddingRight="3dip"
android:background="#00FFFF"
android:layout_toRightOf="@+id/tool20"
>
</View>
<SlidingDrawer
android:id="@+id/slidesearch"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_alignTop="@+id/tool30"
android:layout_alignBottom="@+id/tool30"
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/alarm_clock">
</ImageView>
<EditText
android:id="@+id/txtsearch"
android:layout_width="match_parent"
android:layout_height="match_parent"
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="nothing"
/>
</LinearLayout>
答案 1 :(得分:0)
尝试使用LinearLayout包围RelativeLayout,在其中放置:
android:layout_width="wrap_content"
android:layout_width="wrap_content
然后将RelativeLayout从固定的空间量更改为fill_parent
您可以做的另一件事是使用Droid Draw,这样您就可以直观地进行布局。
答案 2 :(得分:0)