</pre><pre name="code" class="html">public class FocusedTextView extends TextView { public FocusedTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public FocusedTextView(Context context, AttributeSet attrs) { super(context, attrs); } public FocusedTextView(Context context) { super(context); } /* * 使android系统认为控件有焦点。 */ @Override @ExportedProperty(category = "focus") public boolean isFocused() { return true; } }
布局文件
<com.android.exmaple.ui.FocusedTextView android:textSize="18sp" android:singleLine="true" android:ellipsize="marquee" android:text=" 版本更新, 欢迎下载使用, 版本更新, 欢迎下载使用, 版本更新, 欢迎下载使用" android:layout_width="fill_parent" android:layout_height="wrap_content" />