I have a textView which size is 16 characters, if it exceeds 16 characters I want to make it scrollable to the user to view remaining characters. Could any one help me?
I have tried this link Making TextView scrollable on Android
But there is no result?
My TextView Layout:
<TextView  
    android:id="@+id/tv1"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:maxLength="16"
       android:scrollbars = "vertical"
       android:ellipsize="end"
    android:text="fdgdddhhhdhd"
    />
 
     
     
     
     
     
    