Created
March 10, 2015 12:28
-
-
Save hardikamal/4a640919013937afad94 to your computer and use it in GitHub Desktop.
ScrollingTextView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ScrollingTextView extends TextView { | |
public ScrollingTextView(Context context, AttributeSet attrs, | |
int defStyle) { | |
super(context, attrs, defStyle); | |
} | |
public ScrollingTextView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} | |
public ScrollingTextView(Context context) { | |
super(context); | |
} | |
@Override | |
protected void onFocusChanged(boolean focused, int direction, | |
Rect previouslyFocusedRect) { | |
if (focused) { | |
super.onFocusChanged(focused, direction, previouslyFocusedRect); | |
} | |
} | |
@Override | |
public void onWindowFocusChanged(boolean focused) { | |
if (focused) { | |
super.onWindowFocusChanged(focused); | |
} | |
} | |
@Override | |
public boolean isFocused() { | |
return true; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<com.sample.ScrollingTextView | |
android:id="@+id/title" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:paddingLeft="10dip" | |
android:paddingRight="10dip" | |
android:textSize="16dip" | |
android:textStyle="bold" | |
android:lines="1" | |
android:scrollHorizontally="true" | |
android:ellipsize="marquee" | |
android:text="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" | |
android:marqueeRepeatLimit="marquee_forever" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment