안녕하세요.



아래와 같은 Layout의 TextView 에 들어가는 텍스트의 길이가 길어서 화면에 다 보여줄 수 없을 때,
Text 가 Sliding 되도록 하고 싶은데, 어떻게 해야되나요?
 	<RelativeLayout 
		android:id="@+id/network_info_cb_relative_layout" 
		android:layout_height="fill_parent" 
		android:layout_width="fill_parent" 
		android:minHeight="30dip" 
		android:gravity="right|center_vertical" 
		android:layout_marginLeft="10dip" 
		android:layout_marginRight="10dip">
		<TextView 
			android:id="@+id/network_info_cb_text_view" 
			android:hint="@string/no_broadcast_msg"
			android:layout_width="fill_parent" 
			android:layout_height="wrap_content" 
			android:textSize="15dip" 
			android:textColor="#ffffffff" 
			android:scrollHorizontally="true" 
			android:selectAllOnFocus="true">
		</TextView>
	</RelativeLayout>