7

アプリでアクションバーを取得するためのチュートリアルに従いました。しかしandroid:uiOptions="splitActionBarWhenNarrow"、マニフェスト ファイルを挿入しても、まだ先頭に保持されます。誰でもこのコードをどうするかについて何か考えがありますか?

XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:orientation="vertical"
android:background="#f0f0f0" 
android:baselineAligned="false">

<LinearLayout 
    android:id="@+id/myFragments"
    android:layout_width="match_parent"
    android:layout_height="0dp">

</LinearLayout>

</LinearLayout>

マニフェスト ファイル:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.alotoftesting"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" 
        android:uiOptions="splitActionBarWhenNarrow">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>
4

2 に答える 2

5

Google の既定のアクション バーは、いずれの場合も下部に表示されません。他の人が言及しているように、デバイスが狭い場合、画面の下部splitActionBarWhenNarrowにあなたのサブセットActionBar(タブなど) のみを配置します。残念ながら、画面の下部に ActionBar のようなインターフェイスを実装したい場合は、自分で実装する必要があります (クイック検索でこの例が見つかります)。これを行うライブラリは見たことがありません。

ただし、 ActionBar タイプのコントロールがどこにあるのかというユーザーの期待を壊すことにより、設計ドキュメントのシームレス設計原則に違反するため、私はそれをお勧めしません。その期待を裏切るには、かなり説得力のある理由が必要です。

于 2012-08-31T18:37:47.433 に答える