我在 Activity 中动态加载标题;每当标题太长时,我希望它滚动以便可以阅读整个标题。
我已经尝试过自定义 XML 文件和 requestFeature,
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
我试过的另一种方法
TextView textView = (TextView) findViewById(android.R.id.title);
textView.setSelected(true);
textView.setEllipsize(TruncateAt.MARQUEE);
textView.setMarqueeRepeatLimit(1);
textView.setFocusable(true);
textView.setFocusableInTouchMode(true);
textView.requestFocus();
textView.setSingleLine(true);
在 ellipsize() 处给了我空指针。我很茫然,真的。我怎样才能达到这个效果?