14

質問:

どうすればタイトルを取り戻すことができますか?


スクリーンショットは次のとおりです(タイトルがありません):

ここに画像の説明を入力

アクションバーの設定:

 ActionBar actionBar = getSupportActionBar();
 actionBar.setTitle("My Title");
 actionBar.setIcon(drawable.dropdown_user);

 View mLogoView = LayoutInflater.from(this).inflate(R.layout.mLogoView, null);
 actionBar.setCustomView(mLogoView);

 actionBar.setDisplayShowCustomEnabled(true);
 actionBar.setDisplayShowTitleEnabled(true);
 actionBar.setDisplayHomeAsUpEnabled(true);

mLogoView.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >
    <ImageView
        android:id="@+id/img_merchant"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_alignParentRight="true"
        android:src="@drawable/infoflex">
</ImageView>
</RelativeLayout >

4

1 に答える 1

30

それを修正する方法を考えることができる最初のことは、設定しようとすることです

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right" >

あなたにRelativeLayout。Android のデフォルトでは、すべてのビューが左から右に追加されるためです (コードで他に何かを指定しない場合)。

それがうまくいかない場合はandroid:layout_width="90dip" 、画像とテストに応じて、または他の値を追加します。2 番目のオプションは回避策に似ていますが、すべてのデバイスで機能すると思います。

編集:

RelativeLayoutActionBar で Custom Viewsを使用すると少し問題があることがわかったので、コードを使用LinearLayoutして設定することをお勧めLayoutParamsします。xml を次のように変更します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
    <ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:src="@drawable/asus"    />
</LinearLayout >

MainActivity.class でこれを使用します。

import com.actionbarsherlock.app.ActionBar.LayoutParams;
....
ActionBar actionBar = getSupportActionBar();

actionBar.setTitle("OMG");

LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL);
View customNav = LayoutInflater.from(this).inflate(R.layout.img, null); // layout which contains your button.
actionBar.setCustomView(customNav, lp);
actionBar.setDisplayShowCustomEnabled(true);
于 2013-05-13T08:06:59.530 に答える