我有一个使用本地化的应用,想知道我是否可以获得折叠的操作栏菜单按钮的宽度?它只适用于没有菜单按钮的手机,例如nexus 5.我想知道它是否有可能,因为有时候我的本地化对于房间来说太大了,我希望能够正确地缩放它但如果我不知道折叠菜单按钮的宽度,则不能。我使用自定义标题栏,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/title_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/title_gradient"
android:orientation="vertical"
android:tag="title" >
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingBottom="3dp"
android:text="@string/Hearing_Test"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/solid_white"
android:textStyle="bold" />
<ImageButton
android:id="@+id/info_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="#0000"
android:padding="10dp"
android:onClick="infoView"
android:src="@drawable/info" >
</ImageButton>
</RelativeLayout>
非常感谢任何帮助。