成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術(shù)文章
文章詳情頁

詳解Android使用CoordinatorLayout+AppBarLayout+CollapsingToolbarLayou實現(xiàn)手指滑動效果

瀏覽:8日期:2022-09-24 09:28:59

CoordinatorLayout+AppBarLayout+CollapsingToolbarLayou實現(xiàn)手指滑動效果

如何使用 CoordinatorLayout+AppBarLayout+CollapsingToolbarLayou實現(xiàn)下面GIF圖中的效果,再展開的時候頭像處于紅白中間,根據(jù)收縮程度改變頭像的位置!底下的RecyclerView也跟隨這個移動,不會出現(xiàn)中間隔出一段距離!(僅提供源碼復(fù)制粘貼,很簡單的)

先看下效果圖:

詳解Android使用CoordinatorLayout+AppBarLayout+CollapsingToolbarLayou實現(xiàn)手指滑動效果

下面上代碼

XML布局代碼如下:

<?xml version='1.0' encoding='utf-8'?><LinearLayout xmlns:android='http://schemas.android.com/apk/res/android' xmlns:app='http://schemas.android.com/apk/res-auto' android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='vertical'> <android.support.design.widget.CoordinatorLayout android: android:layout_width='match_parent' android:layout_height='match_parent' android:clipChildren='false'> <android.support.design.widget.AppBarLayout android: android:layout_width='match_parent' android:layout_height='wrap_content' android:background='@color/cFF3523' android:clipChildren='false' app:elevation='0dp'> <android.support.design.widget.CollapsingToolbarLayoutandroid: android:layout_width='match_parent'android:layout_height='wrap_content'app:layout_scrollFlags='scroll|exitUntilCollapsed'><RelativeLayout android: android:layout_width='match_parent' android:layout_height='200dp' android:orientation='horizontal' app:layout_collapseMode='parallax' app:layout_collapseParallaxMultiplier='0.25'> <android.support.v7.widget.CardView android:layout_width='match_parent' android:layout_height='60dp' android:layout_centerVertical='true' android:layout_gravity='center' android:layout_marginLeft='15dp' android:layout_marginRight='15dp' app:cardCornerRadius='5dp' app:cardElevation='5dp'> <LinearLayout android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='horizontal'> <LinearLayoutandroid:layout_width='0dp'android:layout_height='match_parent'android:layout_weight='1'android:orientation='vertical'><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal|bottom' android:text='331' android:textColor='@color/c333333' android:textSize='16sp' /><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal' android:text='積分' android:textColor='@color/c333333' android:textSize='10sp' /> </LinearLayout> <Viewandroid:layout_width='0.7px'android:layout_height='40dp'android:layout_gravity='center_vertical'android:background='#727272'></View> <LinearLayoutandroid:layout_width='0dp'android:layout_height='match_parent'android:layout_weight='1'android:orientation='vertical'><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal|bottom' android:text='5' android:textColor='@color/c333333' android:textSize='16sp' /><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal' android:text='優(yōu)惠卷' android:textColor='@color/c333333' android:textSize='10sp' /> </LinearLayout> <Viewandroid:layout_width='0.7px'android:layout_height='40dp'android:layout_gravity='center_vertical'android:background='#727272'></View> <LinearLayoutandroid:layout_width='0dp'android:layout_height='match_parent'android:layout_weight='1'android:orientation='vertical'><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal|bottom' android:text='0.00' android:textColor='@color/c333333' android:textSize='16sp' /><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal' android:text='代金卷' android:textColor='@color/c333333' android:textSize='10sp' /> </LinearLayout> <Viewandroid:layout_width='0.7px'android:layout_height='40dp'android:layout_gravity='center_vertical'android:background='#727272'></View> <LinearLayoutandroid:layout_width='0dp'android:layout_height='match_parent'android:layout_weight='1'android:orientation='vertical'><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal|bottom' android:text='3314' android:textColor='@color/c333333' android:textSize='16sp' /><TextView android:layout_width='match_parent' android:layout_height='0dp' android:layout_weight='1' android:gravity='center_horizontal' android:text='淘幣' android:textColor='@color/c333333' android:textSize='10sp' /> </LinearLayout> </LinearLayout> </android.support.v7.widget.CardView></RelativeLayout><RelativeLayout android:layout_width='match_parent' android:layout_height='50dp' android:background='@color/cFF3523' android:gravity='center_vertical' app:layout_collapseMode='pin'> <ImageView android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_marginRight='10dp' android:layout_toLeftOf='@id/Fragment_ontstf_message' android:src='http://www.piao2010.com/bcjs/@mipmap/set' /> <ImageView android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_alignParentRight='true' android:layout_marginRight='10dp' android:src='http://www.piao2010.com/bcjs/@mipmap/message' /></RelativeLayout><android.support.v7.widget.Toolbar android: android:layout_width='match_parent' android:layout_height='?attr/actionBarSize' app:contentInsetStart='0dp' app:layout_collapseMode='pin'> <LinearLayout android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='horizontal' android:padding='5dp'> <de.hdodenhof.circleimageview.CircleImageView android: android:layout_width='45dp' android:layout_height='45dp' android:layout_gravity='center_vertical' android:src='http://www.piao2010.com/bcjs/@mipmap/ic_launcher_round' /> <LinearLayout android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='vertical'> <TextViewandroid: android:layout_width='wrap_content'android:layout_height='0dp'android:layout_weight='1'android:layout_marginLeft='10dp'android:textSize='18sp' /> <TextViewandroid: android:layout_width='wrap_content'android:layout_height='0dp'android:layout_weight='1'android:layout_marginLeft='10dp'android:layout_marginBottom='5dp'android:textSize='14sp' /> </LinearLayout> </LinearLayout></android.support.v7.widget.Toolbar> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout> <android.support.v7.widget.RecyclerView android: android:layout_width='match_parent' android:layout_height='match_parent' android:background='@color/c00000000' app:layout_behavior='@string/appbar_scrolling_view_behavior'></android.support.v7.widget.RecyclerView> </android.support.design.widget.CoordinatorLayout></LinearLayout>

JAVA代碼如下:

/** * 獲取控件信息 */ private void initView() { FragmentOntstfAppBar = (AppBarLayout) view.findViewById(R.id.Fragment_ontstf_AppBar); FragmentOntstfToolbar = (Toolbar) view.findViewById(R.id.Fragment_ontstf_Toolbar); FragmentOntstfPortrait = (CircleImageView) view.findViewById(R.id.Fragment_ontstf_portrait); FragmentOntstfName = (TextView) view.findViewById(R.id.Fragment_ontstf_name); FragmentOntstfIntroduce = (TextView) view.findViewById(R.id.Fragment_ontstf_introduce); FragmentOntstfCollapsingToolbarLayout = (CollapsingToolbarLayout) view.findViewById(R.id.Fragment_ontstf_CollapsingToolbarLayout); FragmentOntstfSet = (ImageView) view.findViewById(R.id.Fragment_ontstf_set); FragmentOntstfMessage = (ImageView) view.findViewById(R.id.Fragment_ontstf_message); FragmentOntstfRecyclerView = (RecyclerView) view.findViewById(R.id.Fragment_ontstf_RecyclerView); FragmentOntstfCoordinatorLayout = (CoordinatorLayout) view.findViewById(R.id.Fragment_ontstf_CoordinatorLayout); FragmentOntstfRelativeLayout = (RelativeLayout) view.findViewById(R.id.Fragment_ontstf_RelativeLayout); setFragmentOntstfRecyclerView(); AppBar(); mPresenter.PselectUser(Userid); } /** * 最主要的代碼 * AppBar滑動效果 */ private void AppBar() { FragmentOntstfAppBar.setExpanded(true); FragmentOntstfAppBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() { @Override public void onOffsetChanged(AppBarLayout appBarLayout, int i) {float alpha = (float) Math.abs(i) / appBarLayout.getTotalScrollRange();if (alpha == 0) { CollapsingToolbarLayout.LayoutParams layoutParams = new CollapsingToolbarLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); FragmentOntstfRecyclerView.setPadding(0,FragmentOntstfToolbar.getHeight() / 2,0,0); layoutParams.setMargins(0, 0, 0, (-FragmentOntstfToolbar.getHeight() / 2)); layoutParams.gravity = Gravity.BOTTOM; FragmentOntstfToolbar.setLayoutParams(layoutParams); FragmentOntstfCoordinatorLayout.setClipChildren(false);} else if (FragmentOntstfRelativeLayout.getHeight() - Math.abs(i * 1.0f) == FragmentOntstfToolbar.getHeight()) { FragmentOntstfCoordinatorLayout.setClipChildren(true);} else { int a = (int) ((FragmentOntstfToolbar.getHeight() / 2) * alpha); CollapsingToolbarLayout.LayoutParams layoutParams = new CollapsingToolbarLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); FragmentOntstfRecyclerView.setPadding(0,FragmentOntstfToolbar.getHeight() / 2 - a,0,0); layoutParams.setMargins(0, 0, 0, -(FragmentOntstfToolbar.getHeight() / 2) - (-a)); layoutParams.gravity = Gravity.BOTTOM; FragmentOntstfToolbar.setLayoutParams(layoutParams); FragmentOntstfCoordinatorLayout.setClipChildren(false);} } }); }

這樣就完成了!

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Android
相關(guān)文章:
成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久
亚洲无线观看| 亚洲国产精品久久久久秋霞影院| 国产精品久久久久影院老司| 国产成人8x视频一区二区| 欧美丝袜丝交足nylons图片| 免费久久99精品国产| 色94色欧美sute亚洲线路一久| 亚洲一区二区美女| 亚洲欧美影院| 久久品道一品道久久精品| 99久久婷婷国产| 国产夜色精品一区二区av| 成人影视亚洲图片在线| 欧美电影免费观看高清完整版在线 | 亚洲激情综合| 中文字幕在线不卡视频| 欧美精品99| 国产精品乱码一区二区三区软件| 欧美 日韩 国产 一区| 久久日韩精品一区二区五区| 欧美1区免费| 风流少妇一区二区| 一区二区欧美视频| 91在线观看美女| 精品理论电影在线观看| 国产999精品久久| 欧美电影免费观看完整版| 成人动漫在线一区| 国产网站一区二区| 国产精品二区在线| 亚洲欧洲精品一区二区三区| 亚洲人体一区| 一区二区三区 在线观看视频| 欧美日韩亚洲一区二区三区四区| 国产日韩欧美麻豆| 亚洲网址在线| 亚洲国产精品综合小说图片区| 欧美专区18| 日韩精品一二三四| 欧美三片在线视频观看| 国产成人免费在线| 国产亚洲一区字幕| 亚洲美女啪啪| 日本中文字幕一区二区有限公司| 欧美日韩国产免费| 福利一区二区在线| 中文字幕精品在线不卡| 在线亚洲伦理| 视频一区二区国产| 欧美精品久久天天躁| 成人久久视频在线观看| 国产精品高潮呻吟| 模特精品在线| 国产精品综合一区二区| 久久奇米777| 日韩亚洲国产欧美| 日本女优在线视频一区二区| 6080yy午夜一二三区久久| 欧美精品首页| 亚洲成人午夜电影| 91精品一区二区三区久久久久久| 欧美日韩高清在线一区| 亚洲a一区二区| 在线成人午夜影院| 欧美日韩国产区一| 国产精品视频久久一区| 99久久婷婷国产综合精品电影 | 不卡在线视频中文字幕| 99久久精品99国产精品| 国产精品初高中害羞小美女文| 亚洲主播在线| 久久69国产一区二区蜜臀| 2020国产精品久久精品美国| 99热免费精品| 青青草国产成人av片免费| 欧美成人video| 一区二区三区成人精品| 国产做a爰片久久毛片| 中文成人av在线| 91福利国产精品| a在线欧美一区| 亚洲国产成人精品视频| 日韩你懂的在线播放| 国产精品亚洲综合久久| 国产91丝袜在线18| 亚洲精品中文在线影院| 欧美一区二区视频网站| 日韩香蕉视频| 成人性生交大片免费看在线播放| 综合色中文字幕| 欧美日韩aaa| 亚洲欧洲日本国产| 国产一区二区三区在线观看免费| 中文字幕在线一区免费| 欧美色图激情小说| 国产一区二区三区四区三区四| 久久激情综合网| 成人欧美一区二区三区在线播放| 精品视频在线免费观看| 在线免费观看一区二区三区| 国产精品99久久久久久似苏梦涵| 亚洲女女做受ⅹxx高潮| 国产精品成人一区二区艾草| 欧美人xxxx| 999亚洲国产精| 懂色av噜噜一区二区三区av| 亚洲va在线va天堂| 欧美激情一区二区三区不卡| 欧美精品在线一区二区三区| 国产日本精品| 99riav一区二区三区| 蜜桃一区二区三区在线观看| 成人欧美一区二区三区黑人麻豆| 欧美一级日韩免费不卡| 久久久久九九九| 影音先锋久久资源网| 大胆欧美人体老妇| 免费观看30秒视频久久| 一区二区三区中文字幕电影| 亚洲精品在线免费播放| 在线精品视频免费播放| 亚洲乱码久久| 91在线视频免费观看| 国产一区二区三区久久久| 亚洲高清一区二区三区| 国产精品天干天干在线综合| 日韩一区二区三区四区| 老牛国产精品一区的观看方式| 国产一区美女| 成人av影视在线观看| 精品一区二区三区不卡| 亚洲大片在线观看| 亚洲色图制服诱惑| 国产女主播在线一区二区| 欧美日韩在线电影| 午夜亚洲精品| 国内精品亚洲| 99久久伊人网影院| 国产精品77777竹菊影视小说| 男人操女人的视频在线观看欧美| 中文字幕一区二区在线观看| 26uuu亚洲婷婷狠狠天堂| 欧美女孩性生活视频| 91国在线观看| 午夜亚洲福利在线老司机| 99香蕉国产精品偷在线观看 | 欧美一区二视频| 在线中文字幕一区二区| 亚洲一区尤物| 亚洲精品在线二区| 欧美午夜视频在线| 午夜精品亚洲| 97精品久久久午夜一区二区三区 | 精品国产乱码久久久久久浪潮| 欧美午夜精品理论片a级按摩| 99热免费精品| 韩日欧美一区| 国产一区二区三区自拍| 97成人超碰视| a级精品国产片在线观看| 国产91精品露脸国语对白| 国产一区二区三区在线观看免费 | 樱桃国产成人精品视频| 亚洲欧美一区二区久久| 亚洲欧洲一区二区在线播放| 欧美激情一区三区| 国产欧美一区二区精品仙草咪| 欧美电视剧在线观看完整版| 欧美另类一区二区三区| 欧美亚洲禁片免费| 欧美性色黄大片| 欧美日韩一区二区三区在线看| 在线观看亚洲成人| 欧美日韩一区二区电影| 欧美精品丝袜中出| 制服.丝袜.亚洲.中文.综合| 制服丝袜激情欧洲亚洲| 欧美xxxxxxxxx| 国产日韩精品一区二区三区| 欧美国产精品v| 中文字幕一区不卡| 一区二区三区欧美久久| 亚洲精品国久久99热| 亚洲精品成人天堂一二三| 亚洲国产中文字幕| 日韩精品一二三| 激情综合色播五月| 国产精品亚洲第一| 不卡的电影网站| 欧美视频久久| 国产欧美日韩综合一区在线观看 | 国产精品一区二区三区免费观看| 国产精品日本一区二区| 久久一二三区| 一本久久a久久免费精品不卡| 色噜噜偷拍精品综合在线| 欧美天天综合网| 日韩女优制服丝袜电影| 久久九九影视网| 亚洲色图欧美偷拍|