如何在CollapsingToolbar中添加过渡文本

时间:2019-07-15 04:18:47

标签: java android android-layout android-xml

我想向折叠的工具栏的折叠版本中添加一些过渡文本。我有一个带选项卡布局的折叠工具栏,以及一个在选项卡布局下方带有文本的textview。两者都在折叠式工具栏中。

如何从TextView中获取文本以过渡到折叠工具栏的空间

我在网上搜索过,但都不是我的问题的解决方法

这是我的布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".AddExpenseSheetActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/expense_bar_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/expense_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:popupTheme="@style/AppTheme.PopupOverlay">

            <TextView
                android:id="@+id/expense_bar_title"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="?android:attr/actionBarSize"
                android:gravity="center"
                android:text="@string/placeholder_text"
                android:textColor="@android:color/white"
                android:textSize="20sp" />

        </androidx.appcompat.widget.Toolbar>

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/expense_bar_container">


        <com.google.android.material.appbar.AppBarLayout
            android:id="@+id/tab_layout_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:elevation="12dp"
            android:fitsSystemWindows="true"
            android:theme="@style/AppTheme.AppBarOverlay">


            <com.google.android.material.appbar.CollapsingToolbarLayout
                android:id="@+id/tab_collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                android:minHeight="40dp"
                app:contentScrim="?attr/colorPrimary"
                app:expandedTitleGravity="bottom|center_horizontal"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">


                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    app:layout_behavior="@string/appbar_scrolling_view_behavior">

                    <com.google.android.material.tabs.TabLayout
                        android:id="@+id/expense_account_tab"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="?attr/colorPrimaryDark"
                        android:elevation="12dp"
                        android:minHeight="?attr/actionBarSize"
                        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                        app:tabIndicatorColor="@android:color/white"
                        app:tabIndicatorGravity="top"
                        app:tabIndicatorHeight="10dp"
                        app:tabMode="scrollable" />

                    <androidx.cardview.widget.CardView
                        android:id="@+id/expense_amount_cardView"
                        android:layout_width="match_parent"
                        android:layout_height="150dp"
                        android:layout_below="@id/expense_account_tab"
                        android:layout_gravity="center"
                        android:elevation="10dp"
                        card_view:cardBackgroundColor="?attr/colorPrimaryDark"
                        card_view:cardCornerRadius="5dp"
                        card_view:cardElevation="10dp"
                        card_view:cardUseCompatPadding="false">


                        <TextView
                            android:id="@+id/expense_text_view"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:layout_gravity="center"
                            android:contentDescription="@string/expense_text_desc"
                            android:gravity="center"
                            android:text="$00000.00"
                            android:textAlignment="center"
                            android:textColor="@android:color/white"
                            android:textSize="75sp" />


                    </androidx.cardview.widget.CardView>


                </RelativeLayout>


            </com.google.android.material.appbar.CollapsingToolbarLayout>


        </com.google.android.material.appbar.AppBarLayout>


        <include layout="@layout/content_add_expense" />

    </androidx.coordinatorlayout.widget.CoordinatorLayout>

</RelativeLayout>

enter image description here

enter image description here

我希望将$ 0000.00转换为工具栏下方的空间。我该怎么做?

0 个答案:

没有答案