RelativeLayout안에 TextView가 있는데..

여기다  TextView의 속성으로

android:ellipsize="marquee"로 주고 setSelected를 true로 주고 싶은데

이 setSelected의 값을 어떠한 방법으로 줘야하는지 모르겠습니다.

xml상에서 setSelected의 값을 true로 주는 방법은 없는것입니까?? 없다면 메인쪽에서라도 설정하는 방법을 알고싶습니다.

xml문서..

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"       
        android:id="@+id/widget"
        android:layout_width="fill_parent"
        android:layout_height="168dip"
        android:focusable="true"
        android:paddingLeft="8dip"
        android:paddingRight="8dip"
        style="@style/WidgetBackground" >
       
        <TextView
            android:id="@+id/word_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="7dip"
            android:includeFontPadding="false"
            android:singleLine="true"
            android:ellipsize="end"
            style="@style/Text.WordTitle"/>
   
        <TextView  "marquee" 가 적용되어야 할 부분.
            android:id="@+id/word_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:ellipsize="marquee"  
            android:layout_below="@id/word_title"
            style="@style/Text.WordType" />
       
        <TextView 
            android:id="@+id/bullet"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:maxLines="7"
            android:layout_below="@id/word_type"
            style="@style/Text.BulletPoint" />
    </RelativeLayout>