在操作栏中有一个textView。我翻译了文本视图,但是文本太长而且被剪切或有点。 我能怎么做?感谢
这是xml:
<TextView
android:id="@+id/current_team_actionbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text text text text text text text text text text 5"
android:textColor="#ffff"
android:maxLines='1'
android:textSize="12sp"
android:alpha="0.5" />
LayoutInflater inflater = LayoutInflater.from(this);
View custom = inflater.inflate(R.layout.layout_custom_actionbar, null);
TextView currentTeam = (TextView) custom.findViewById(R.id.current_team_actionbar);
currentTeam.setText("text text text text text text text text");
actionBarTabsMenu.setCustomView(custom);
actionBarTabsMenu.setDisplayShowCustomEnabled(true);
答案 0 :(得分:1)
您可能需要的是滚动文本以便所有内容都可见:
<TextView
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"/>