android qq 消息页面 editview 获得焦点把 标题栏 顶上去 问题

 


 

 ListView 改成 ScrollView 也是有效果的,但改成RelativeLayout 却不行,
 改成 RelativeLayout 嵌套 listview 也是可以得 ,
 可以 给我一个解释 为啥是这样的吗 ?

 


 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/aaa"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:background="@color/black"
        android:gravity="top" >
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="@string/hello_world"
            android:textColor="@color/white"
            android:textSize="20sp" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:background="@color/grey" >
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
            <requestFocus />
        </EditText>
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/relativeLayout1"
        android:layout_below="@id/aaa" >

// 将 ListView 改成 ScrollView 也是有效果的,但改成RelativeLayout 却不行,
// 改成 RelativeLayout 嵌套 listview 也是可以得 ,
        <ListView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@color/black"
            android:visibility="visible" />
    </RelativeLayout>

</RelativeLayout>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(android,标题栏,EditView,顶上,消息页面)