タイトルをアクティビティに動的にロードします。タイトルが長すぎるときはいつでも、タイトル全体が読めるようにスクロールしたいと思います。
カスタム 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() で nullpointers をくれました。私は本当に途方に暮れています。どうすればこの効果を達成できますか?