1
如何實現CollapsingToolbarLayout字幕像WhatsApp的
什麼,我想實現顯示在畫面,顯示爲「通過創建+91」的詳細信息頁面副標題
目前我能夠僅實施標題。 這是我的代碼用於創建標題我需要創建一個子標題太任何想法??
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:emojicon="http://schemas.android.com/tools"
android:id="@+id/root_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/linearLayout"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="200dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_collapseMode="parallax" >
<ImageView
android:id="@+id/event_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
android:src="@drawable/ic_launcher"
android:transitionName="event_image"
/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/img_event"
android:background="@drawable/gradient_black" >
</FrameLayout>
</RelativeLayout>
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar" />
</android.support.design.widget.CollapsingToolbarLayout>
你試過getSupportActionBar()setSubtitle( 「」); ? – Shahzeb
@Shahzeb是的,根據開發者博客,我們只能通過collapsingToolbar.setTitle(「title」)設置標題;我問的是,還有其他方法來設置小標題嗎? http://android-developers.blogspot.in/2015/05/android-design-support-library.html –