我试图让ellipsize处理我的标题,但正如您在图像中看到的那样,它在菜单按钮之前设置了...而不是在两个添加的图像按钮之前。
设置标题的活动代码:
// set title
TextView mTitle = (TextView)findViewById(R.id.group_post_title);
mTitle.setText(title);
标题XML:
<?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="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/group_post_title"
style="@style/title"
android:text="@string/group_post" />
<ImageButton
android:id="@+id/group_post_comment_add"
android:layout_width="40dp"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/group_post_status_view"
android:background="@drawable/title_button"
android:contentDescription="@string/add_grouppost"
android:src="@android:drawable/ic_menu_add" />
<RelativeLayout
android:id="@+id/group_post_status_view"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:orientation="horizontal" >
<ProgressBar
android:id="@+id/group_post_status"
style="?android:attr/progressBarStyleSmall"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:visibility="gone" />
<ImageButton
android:id="@+id/group_post_reload"
android:layout_width="40dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/title_button"
android:contentDescription="@string/reload"
android:src="@drawable/menu_refresh" />
</RelativeLayout>
</RelativeLayout>
样式代码:
<style name="title">
<item name="android:singleLine">true</item>
<item name="android:ellipsize">end</item>
<item name="android:scrollHorizontally">true</item>
<item name="android:layout_centerVertical">true</item>
<item name="android:layout_marginLeft">5dp</item>
<item name="android:textSize">16sp</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
</style>
答案 0 :(得分:0)
我找到了解决方案:
在右边的“东西”周围添加LinearLayout
。给它一个id
。使用标题android:layout_toLeftOf
上的TextView
与id
上提供的LinearyLayout
,并使用标题使用android:ellipsize
正确。