ListView로 구현한 리스트에서는 divider 구분선을 안보이게 하기 위해
android:divider="#ffffff"
android:dividerHeight="0dp"

위와 같은 방법으로 설정하여 구분선을 없애는데 
아래처럼 구현한 리스트에서의 구분선을 없애는 방법을 모르겠습니다.

리스트와 데이터는 정상으로 뿌려지는데 구분선이 중간에 들어가 있네요..
첨부파일처럼 결과가 나옴.
아..그리고 bg의 작은 이미지로 배경에 뿌리려 하는데 반복해서 뿌려지는 방법이 없을까요?
현재는 해상도 사이즈만큼 bg 이미지가 커져서 깨져서 나오네요..

리스트 구현 ParsingLisL .java
public class ParsingLisL extends ListActivity { 
      
         private static class ListAdapter extends BaseAdapter {
            ....
        
                  public View getView(int position, View convertView, ViewGroup parent) { 
                   ...
                   convertView = mInflater.inflate(R.layout.list, null);
                   ...
                  }

         }
         public void onCreate(Bundle savedInstanceState) {
             super.onCreate(savedInstanceState);
             setListAdapter(new ListAdapter(this));
         }
}
        
        

list.xml
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout android:background="@drawable/bg" xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="6dip"
    android:orientation="horizontal" >
   
    <LinearLayout android:background="@drawable/shape_1" android:layout_width="310dip"
     android:layout_height="fill_parent"
     android:layout_marginRight="3dip"
     android:orientation="horizontal">
   
      <ImageView android:id="@+id/icon"
   android:layout_width="48dip"
   android:layout_height="48dip"
   android:layout_marginRight="5dip"/>
      
      <RelativeLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_weight="1">

        <TextView android:id="@+id/writer_nm"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content" 
   android:layout_marginLeft="5dip"
   android:textStyle="bold"
   android:textColor="#3c8089"
   android:singleLine="true"/>
   
     <TextView android:id="@+id/write_d"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content" 
   android:layout_marginLeft="5dip"
   android:layout_toRightOf="@+id/writer_nm"
   android:singleLine="true"/>

        <TextView android:id="@+id/text"
   android:layout_width="wrap_content"       
   android:layout_height="wrap_content"
   android:layout_weight="1.0"
   android:layout_below="@+id/writer_nm"
   android:layout_marginLeft="5dip"
   android:textColor="#000000"/>

      </RelativeLayout> 
     </LinearLayout>
</LinearLayout>