当前位置: 代码迷 >> Android >> android 相对布局的有关问题!
  详细解决方案

android 相对布局的有关问题!

热度:6   发布时间:2016-05-01 11:58:35.0
android 相对布局的问题!!!
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:background="@color/brown"
    >
     <EditText 
     android:id="@+id/ee"
    android:layout_width="200dip"
    android:layout_height="wrap_content"
     />
     <TextView 
     android:id="@+id/tt"
    android:layout_width="200dip"
    android:layout_height="wrap_content"
    android:layout_above="@id/ee"
    android:background="@color/darkgray"
    android:text="123123"
     />
    
</RelativeLayout>

为什么TextView没有在EditText的上面???????

不要说把EditText放到TextView的下面!!!!!!!!

------解决方案--------------------
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
     <EditText 
     android:id="@+id/ee"
    android:layout_width="200dip"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
     />
     <TextView 
     android:id="@+id/tt"
    android:layout_width="200dip"
    android:layout_height="wrap_content"
    android:layout_above="@id/ee"
    android:text="123123"
     />
    
</RelativeLayout>
这样可以
  相关解决方案