2015-12-09 54 views
5

如何實現以下佈局。我可以實現沒有添加按鈕。但是,向上滾動時,如何添加ADD按鈕和添加按鈕應隨圖像視差一起消失。android:如何在摺疊工具欄中添加帶文本的按鈕

我發現的是浮動動作按鈕沒有設施來添加文本。我只能使用按鈕。

enter image description here

我的XML佈局不添加按鈕:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/drawer_layoutplace1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.CoordinatorLayout 
     android:id="@+id/coordinatorLayout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/appBarLayout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:fitsSystemWindows="true"> 

      <android.support.design.widget.CollapsingToolbarLayout 
       android:id="@+id/collapsing_toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="150dip" 
       android:fitsSystemWindows="true" 
       app:contentScrim="?attr/colorPrimary" 
       app:expandedTitleMarginBottom="20dp" 
       app:expandedTitleMarginEnd="64dp" 
       app:expandedTitleMarginStart="48dp" 
       app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

       <ImageView 
        android:id="@+id/header" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        app:layout_collapseMode="parallax" /> 

       <android.support.v7.widget.Toolbar 
        android:id="@+id/toolbar" 
        android:layout_width="match_parent" 
        android:layout_height="?attr/actionBarSize" 
        app:layout_collapseMode="pin" 
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 


      </android.support.design.widget.CollapsingToolbarLayout> 

     </android.support.design.widget.AppBarLayout> 

     <FrameLayout 
      android:id="@+id/framelayout" 
      android:layout_width="match_parent" 
      android:layout_height="50dp" 
      android:layout_gravity="bottom" 

      app:layout_anchor="@+id/appBarLayout" 
      app:layout_anchorGravity="bottom" 
      app:layout_collapseMode="none"> 

      <android.support.design.widget.TabLayout 
       android:id="@+id/tabLayout" 
       android:layout_width="match_parent" 
       android:layout_height="50dp" 
       android:background="#ffffff" 
       android:gravity="bottom" 
       android:textAllCaps="false" 
       android:theme="@style/MyCustomTabLayout" 
       app:tabGravity="center" 
       app:tabIndicatorColor="#574ec1" 
       app:tabIndicatorHeight="2dp" 
       app:tabMode="scrollable" 
       app:tabSelectedTextColor="#574ec1" 
       app:tabTextColor="#8A000000" /> 

     </FrameLayout> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/viewPager" 
      android:layout_width="match_parent" 
      android:layout_height="fill_parent" 
      android:paddingBottom="56dp" 
      android:layout_marginTop="50dp" 

      app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

    </android.support.design.widget.CoordinatorLayout> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/navigation_viewplace1" 
     android:layout_height="match_parent" 
     android:layout_width="wrap_content" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="false" 
     app:itemTextColor="#8A000000" 
     app:itemIconTint="#8A000000" 
     app:menu="@menu/drawer_view" /> 
</android.support.v4.widget.DrawerLayout> 

而且文字: 「烏杜皮SRIKRISHNA寺」 出現在雙線條。那可能嗎。

我添加使用

collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar); 
     collapsingToolbar.setTitle("Udupi Sri krishna Temple"); 

標題,但標題只顯示部分和顯示...

相反,我希望它在多行顯示。是否有可能

回答

11

你可以這樣

<android.support.design.widget.AppBarLayout 
    android:id="@+id/appBarLayout" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.CollapsingToolbarLayout 
     android:id="@+id/collapsing_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="150dip" 
     android:fitsSystemWindows="true" 
     app:contentScrim="?attr/colorPrimary" 
     app:expandedTitleMarginBottom="20dp" 
     app:expandedTitleMarginEnd="64dp" 
     app:expandedTitleMarginStart="48dp" 
     app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

     <ImageView 
      android:id="@+id/header" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:layout_collapseMode="parallax" /> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      app:layout_collapseMode="pin" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:gravity="bottom|end" 
      app:layout_collapseMode="parallax" 
      android:orientation="horizontal"> 
      <Button 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="Button"/> 
     </LinearLayout> 
    </android.support.design.widget.CollapsingToolbarLayout> 

</android.support.design.widget.AppBarLayout> 

在主滾動內容添加按鈕和圖像把這段代碼

<android.support.v4.widget.NestedScrollView 
    android:id="@+id/scroll" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:clipToPadding="false" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

</android.support.v4.widget.NestedScrollView> 
+0

檢查看起來更接近我想要的。你也可以告訴如何正確獲取文本 –

+0

文本屬性是什麼?你想要textview也用按鈕? –

+0

是的。如何獲得整個「UDUPI SRI KRISHNA TEMPLE」和按鈕。 –

0

您可以添加TextViewButton或任何事情,你想在可摺疊佈局上顯示。

<android.support.design.widget.CollapsingToolbarLayout 
     android:id="@+id/collapsing_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="150dip" 
     android:fitsSystemWindows="true" 
     app:contentScrim="?attr/colorPrimary" 
     app:expandedTitleMarginBottom="20dp" 
     app:expandedTitleMarginEnd="64dp" 
     app:expandedTitleMarginStart="48dp" 
     app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

    <ImageView 
      android:id="@+id/header" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:layout_collapseMode="parallax" > 

<android.support.v7.widget.Toolbar 
         android:id="@+id/toolbar" 
         android:layout_width="match_parent" 
         android:layout_height="?attr/actionBarSize" 
         app:layout_collapseMode="pin" 
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 
       <LinearLayout 
         android:layout_width="match_parent" 
         android:layout_height="match_parent" 
         > 
         <TextView 
           android:id="@+id/toolbar_title_text" 
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content" 
          /> 
          <Button 
          android:id="@+id/btntest" 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
         ... /> 

         ....... 
       </LinearLayout> 

</android.support.v7.widget.Toolbar> 
    </android.support.design.widget.CollapsingToolbarLayout> 
+0

我試過了。文本和按鈕僅添加在頂部高度(?attr/actionBarSize)中。他們不是像圖片所示添加 –

+0

我建議,而不是添加內部工具欄添加它外部和collapsingtoolbarlayout內 –

+0

正確的工作 –

相關問題