2

スタイルを使用してカスタム タイトルを作成します。http://labs.makemachine.net/2010/03/custom-android-window-title/から一部をコーディングします

タイトルsetFeatureDrawableResource(Window.FEATURE_LEFT_ICON,R.drawable.title_logo); バーを中央に設定することもできますか?可能であれば、カスタムスタイルを使用して設定したいです。

編集:私はチェックコードを持っていますhttp://andmobidev.blogspot.com/2010/01/centering-title-of-window.html タイトルバーにアイコンがない場合は正常に動作しますが、アイコンを設定するとエラーが発生します java.lang.ClassCastException: android.widget.RelativeLayoutウィンドウがタイトルバーを描画する方法がわかりません。ブログ http://android-developers.blogspot.com/2009/03/window-backgrounds-ui-speed.htmlのものを確認しました

ありがとうございました。

4

3 に答える 3

5

本当の答えを見つけることができます。最後に、Oncreate でタイトル バー セットのタイトル バー コードを中央に配置する新しいレイアウトをロードします。

 final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

        setContentView(R.layout.main);
        if (customTitleSupported) {
            getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
                    R.layout.title_bar);
        }
        final TextView myTitleText = (TextView) findViewById(R.id.title_bar);
        if (myTitleText != null) {
            myTitleText.setText(R.string.title_ble_melem);

        }

ここにレイアウトがあります

<?xml version="1.0" encoding="utf-8" ?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linear" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    >
    <TextView
        android:id="@+id/title_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="title bar"
        android:layout_centerInParent="true"
        android:layout_marginLeft="5dip"
        android:textStyle="bold"
        android:textColor="#ffffff"
        android:textSize="20sp"
       />

     <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/title_bar"
        android:src="@drawable/ic_top_bar"

    />
    </RelativeLayout >

回答ありがとうございました。

于 2011-06-06T06:22:56.240 に答える
2

コードをsetContentView(R.layout.new)の下に置くだけです...

((TextView)((FrameLayout)((LinearLayout)((ViewGroup) getWindow().getDecorView()).getChildAt(0)).getChildAt(0)).getChildAt(0)).setGravity(Gravity.CENTER);

率直に言って、このコードは別のスタックオーバーフローの質問からコピーされています:アクティビティのタイトルまたはラベルを中央に揃える方法は?

私はそれがあなたが交尾するのを助けることができると確信しています!!!!

;)

于 2011-05-20T06:29:16.193 に答える
2

このページはあなたを助けることができますか?

これ:

<TextView android:id="@android:id/title" 
   style="?android:attr/windowTitleStyle"
   android:background="@null"
   android:fadingEdge="horizontal"
   android:gravity="center_vertical"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent" />

と:

ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView();
LinearLayout root = (LinearLayout) decorView.getChildAt(0);
FrameLayout titleContainer = (FrameLayout) root.getChildAt(0);
TextView title = (TextView) titleContainer.getChildAt(0);
title.setGravity(Gravity.CENTER);

これはActivity.onCreate(...)、コンテンツビューを設定した後に呼び出す必要があります。ソースから

于 2011-05-20T06:26:34.503 に答える