Tuesday 9 May 2017

TextView marquee in android

  No comments
<TextView    
 android:id="@+id/tvDriverDestinationAddress"  
 android:layout_width="match_parent"   
 android:layout_height="wrap_content"   
 android:layout_gravity="center_vertical"  
 android:layout_marginLeft="10dp"    
 android:ellipsize="marquee"  
 android:ems="13"   
 android:text="Gangs of coder" 
 android:focusable="true"  
 android:focusableInTouchMode="true"
 android:freezesText="true"    
 android:hint="Enter Destination"   
 android:marqueeRepeatLimit="marquee_forever"   
 android:maxLines="1"   
 android:scrollHorizontally="true"   
 android:singleLine="true"   
 android:textSize="14sp" />

No comments :

Post a Comment

Loading...