Android中的布局问题

时间:2012-09-12 06:41:10

标签: android android-layout layout android-linearlayout

我在操作栏下面有一个搜索栏。它应显示在viewpager标题条上方。但是视图分页器标题条在此重叠。谁能指出我在这里做错了什么?

这是我的layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
        android:layout_height="wrap_content">
<LinearLayout 
        android:id="@+id/search_edit_frame"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="1dip"
        android:layout_marginBottom="-5dip"
        android:orientation="horizontal"
        android:addStatesFromChildren="true"
        android:gravity="center_vertical"
        android:background="@color/searchbar_bg"
        android:baselineAligned="false" >

     <Button 
            android:id="@+id/search_go_btn"
            android:layout_marginLeft="1dip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:drawableLeft="@android:drawable/ic_menu_search"
        />
        <EditText
            android:id="@+id/search_src_text"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:layout_weight="5.0"
            android:paddingLeft="8dip"
            android:paddingRight="8dip"
            android:textColorHint="#FFFFFF"
            android:textColor="@color/white"

            android:hint="Search Products or Stores"
            android:singleLine="true" >
            <requestFocus/>
            </EditText>

        <ImageButton android:id="@+id/search_voice_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@android:drawable/ic_btn_speak_now"
        />
    <android.support.v4.view.ViewPager 
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
     tools:context=".HomeActivity">

   <android.support.v4.view.PagerTitleStrip android:id="@+id/pager_title_strip"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:background="#CCCC99"       
    android:textColor="#000"
    android:paddingTop="50dp"
    android:paddingBottom="4dp" >   
    </android.support.v4.view.PagerTitleStrip>
   </android.support.v4.view.ViewPager>
   </LinearLayout>
   </LinearLayout>

我尝试将搜索栏拆分为单独的linearlayout。它也不能很好地工作。

1 个答案:

答案 0 :(得分:1)

尝试将android:orientation="vertical"添加到顶部的LinearLayout。我认为水平是默认的,我的理解是你希望它们在彼此之下。