<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  >
<TextView
    android:id="@+id/toptext"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/list_menu"
    android:textSize="25sp"
    android:gravity="center"
    android:layout_centerHorizontal="true"
    android:padding="10dip"
    android:textColor="#000000"
   />
   <View
 android:layout_width="fill_parent"        
  android:layout_height="2dip"      
  android:background="#FF909090"
   android:layout_below="@id/toptext"
  android:id="@+id/linelisttest"
  />
 <ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/linelisttest"
    android:background="@drawable/androboy"
   />
</RelativeLayout>

우선 xml코드는 이렇게 되구요.
에뮬에서도 잘실행은 됩니다.
하지만 터치를 한 상태에서 밑으로 끌면
그때 화명이 검은 색으로 나옵니다. 뭐가 문제입니까?
알려주세요~~ㅠㅠ