我有ActionBar
TextView
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
>
<TextView
android:id="@+id/title_text"
android:text="This will run the marquee animation forever"
android:textSize="@dimen/abc_text_size_title_material_toolbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"
android:paddingTop="20px"/>
</RelativeLayout>
在我的活动中:
ActionBar mActionBar = getActionBar();
mActionBar.setDisplayShowHomeEnabled(false);
mActionBar.setDisplayShowTitleEnabled(false);
LayoutInflater mInflater = LayoutInflater.from(this);
View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
TextView mTitleTextView = (TextView) mCustomView.findViewById(R.id.title_text);
//选框文字在下一行之前工作
mTitleTextView.setText("My Own Title");
//选取框文字在上面的行
之后不起作用 mActionBar.setCustomView(mCustomView);
mActionBar.setDisplayShowCustomEnabled(true);
任何人都知道这是什么问题?
答案 0 :(得分:1)
设置文本后,添加以下内容
mTitleTextView.setSelected(true);
mTitleTextView.setEllipsize(TruncateAt.MARQUEE);
答案 1 :(得分:0)
您是否在setText(“Your text”)之后尝试 mTitleTextView.setSelected(true); ; ?