0

为了我自己的娱乐,我正在编写我的第一个安卓应用程序。在我的 Nexus 7 纵向模式下,操作栏看起来太高了,例如它比 gmail 应用程序中的操作栏高得多(http://www.flickr.com/photos/matthelliwell/8526407062/

我在 HTC Sensation 手机上运行了相同的应用程序,操作栏看起来更像我期望的高度。对于我使用 Theme.Holo.Light 和 showHome 设置的样式:

<resources>
  <style name="GedcomTheme" parent="android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/GedcomActionBarStyle</item>
    <item name="android:textViewStyle">@style/GedcomTextView</item>
    <item name="android:editTextStyle">@style/GedcomEditText</item>
  </style>

  <style name="GedcomTextView" parent="android:Widget.TextView">
    <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
  </style>

  <style name="GedcomEditText" parent="android:Widget.EditText">
    <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
  </style>

  <style name="GedcomActionBarStyle" parent="@android:style/Widget.Holo.ActionBar">
    <item name="android:displayOptions">showHome</item>
  </style>
</resources>

菜单本身创建为:

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/open_menu_item"
        android:title="Open"
        android:icon="@drawable/ic_menu_archive"
        android:showAsAction="ifRoom"/>
    <item
        android:id="@+id/delete_menu_item"
        android:title="Delete"
        android:icon="@drawable/ic_menu_delete"
        android:showAsAction="ifRoom"/>
</menu>

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.home_menu, menu);
    return true;
}

那么如何在 Nexus 上缩小它而不使其在其他设备上过小呢?

4

0 回答 0