我創建了一個完美展現的簡單自定義標題。不過,我不確定爲了讓setTitle方法發揮它的魔力,我的TextView需要什麼id。Android中的自定義標題和setTitle
我的第一選擇是@android:ID /標題,但沒有奏效。
示例 我已經在xml中定義了一個自定義標題佈局並將其添加到了我的活動中。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/custom_title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent" >
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:scaleType="centerInside"
android:onClick="home"
android:src="@drawable/logo" />
<TextView
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:textSize="18dp"
android:textStyle="bold"
android:layout_centerVertical="true"
android:text="TextView" />
</RelativeLayout>
TextView現在是「標題」容器。我想要的是清單中的android:label值自動放入這個新標題TextView中。
即,默認方法setTitle必須將此值添加到一些定義的視圖ID - 我只需要該ID。
在此處添加您的代碼。 – Sajmon