Android-----AppBarLayout 的使用

Android-----AppBarLayout 的使用,第1张

概述AppBarLayout效果:当向下滑动屏幕是时顶部就会出现当向上滑动屏幕时顶部就会折叠向下滑动时:向上滑动后:接下来看代码:Xml总布局(LinearLayout):可以使用Design工具找到AppBarLayout这个布局控件(第一次使用需要下载),然后将其拖入我们的总布局,拖入的时候会出现

AppbarLayout效果:
当向下滑动屏幕是时 顶部就会出现
当向上滑动屏幕时 顶部就会折叠

向下滑动时:


向上滑动后:

接下来 看代码:

Xml总布局(linearLayout):

可以使用Design工具 找到AppbarLayout这个布局控件(第一次使用需要下载),然后将其拖入我们的总布局,拖入的时候会出现一个d框:
这里我们选择了这三个选项,第一个是我们需要的一个Toolbar,第三个是设置我们页面里需要的几个tab,也就是需要几个碎片,案例里我们需要三个


成功将APPbarLayout拖入布局之后,代码如下(有些是我们自己添加的,我写了注释,请认真比对查看)

<?xml version="1.0" enCoding="utf-8"?><androIDx.coordinatorlayout.Widget.CoordinatorLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:app="http://schemas.androID.com/apk/res-auto"    xmlns:tools="http://schemas.androID.com/tools"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent">    <com.Google.androID.material.appbar.AppbarLayout        androID:ID="@+ID/appbar"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content">        <androIDx.appcompat.Widget.Toolbar            androID:layout_wIDth="match_parent"            androID:layout_height="?attr/actionbarSize"            app:layout_scrollFlags="scroll|enteralways">	<!--这里面可加入你想设置的toolbar里面的样式-->            <ImageVIEw                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:src="@mipmap/ic_launcher" />            <TextVIEw                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:text="首页" />        </androIDx.appcompat.Widget.Toolbar><!--        app:layout_scrollFlags="scroll|exitUntilCollapsed"            androID:minHeight="20dp"	这两句可以设置向上滑的时候有多少高度是固定的不缩上去-->        <com.Google.androID.material.tabs.TabLayout            androID:ID="@+ID/tabs"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"	   app:layout_scrollFlags="scroll|enteralways"//这句是默认的        //app:layout_scrollFlags="scroll|exitUntilCollapsed"            //androID:minHeight="20dp"            app:tabMode="scrollable">            <com.Google.androID.material.tabs.TabItem                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:text="Tab1" />            <com.Google.androID.material.tabs.TabItem                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:text="Tab2" />            <com.Google.androID.material.tabs.TabItem                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:text="Tab3" />        </com.Google.androID.material.tabs.TabLayout>    </com.Google.androID.material.appbar.AppbarLayout>    <!--androID:clipTopadding="true"去掉边距的属性,        androID:fillVIEwport="true"填充满-->    <androIDx.core.Widget.nestedScrollVIEw        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"        androID:clipTopadding="true"        androID:fillVIEwport="true"        app:layout_behavior="com.Google.androID.material.appbar.AppbarLayout$ScrollingVIEwBehavior">        <linearLayout            androID:layout_wIDth="match_parent"            androID:layout_height="match_parent"            androID:orIEntation="vertical"            tools:context=".AppbarLayoutActivity"><!--这里面就放整个页面的内容--><!--这个vIEwPage是我自己想加在下面的内容,因为我们需要三个碎片-->            <androIDx.vIEwpager.Widget.VIEwPager                androID:ID="@+ID/vIEwPager"                androID:layout_wIDth="match_parent"                androID:layout_height="match_parent" />        </linearLayout>    </androIDx.core.Widget.nestedScrollVIEw>    <com.Google.androID.material.floatingactionbutton.floatingActionbutton        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_gravity="bottom|end"        androID:layout_margin="16dp"        androID:src="@androID:drawable/ic_input_add" />"</androIDx.coordinatorlayout.Widget.CoordinatorLayout>

既然设置了VIEwPager 那么我就需要几个Fragment碎片放进去
(实际有三个item 需要几个碎片就放几个item 我这里就给出一个做示范)
Item1:

<?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:orIEntation="vertical" androID:layout_wIDth="match_parent"    androID:layout_height="match_parent">    <androIDx.core.Widget.nestedScrollVIEw        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"        androID:fillVIEwport="true">        <linearLayout            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"            androID:orIEntation="vertical" ><!-- androID:scaleType="fitXY"这个属性可以将图片拉伸至填满-->            <ImageVIEw                androID:ID="@+ID/imageVIEw2"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:scaleType="fitXY"                androID:src="@mipmap/bj" />            <ImageVIEw                androID:ID="@+ID/imageVIEw3"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:scaleType="fitXY"                androID:src="@mipmap/background01" />            <ImageVIEw                androID:ID="@+ID/imageVIEw4"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:scaleType="fitXY"                app:srcCompat="@mipmap/img001" />            <ImageVIEw                androID:ID="@+ID/imageVIEw5"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:scaleType="fitXY"                app:srcCompat="@mipmap/img002" />        </linearLayout>    </androIDx.core.Widget.nestedScrollVIEw></linearLayout>

接下来就到了Java代码的编写

Java代码:
先将fragment的类定义出来:
(需要几个fragment就写几个类,关联上对应的item布局)

Fragment1:

package org.wdan.test008;import androID.os.Bundle;import androID.vIEw.LayoutInflater;import androID.vIEw.VIEw;import androID.vIEw.VIEwGroup;import androIDx.annotation.NonNull;import androIDx.annotation.Nullable;import androIDx.fragment.app.Fragment;public class Fragment1 extends Fragment {    @Nullable    @OverrIDe    public VIEw onCreateVIEw(@NonNull LayoutInflater inflater, @Nullable VIEwGroup container, @Nullable Bundle savedInstanceState) {    //对应上我们的item1        VIEw vIEw=inflater.inflate(R.layout.item1,container,false);        return vIEw;    }}

Activity:

package org.wdan.test008;import androID.os.Bundle;import androID.vIEw.VIEw;import androIDx.annotation.NonNull;import androIDx.annotation.Nullable;import androIDx.appcompat.app.AppCompatActivity;import androIDx.fragment.app.Fragment;import androIDx.fragment.app.FragmentManager;import androIDx.fragment.app.FragmentPagerAdapter;import androIDx.vIEwpager.Widget.PagerAdapter;import androIDx.vIEwpager.Widget.VIEwPager;import com.Google.androID.material.appbar.AppbarLayout;import com.Google.androID.material.tabs.TabLayout;import java.util.ArrayList;import java.util.List;public class AppbarLayoutActivity extends AppCompatActivity {    private TabLayout tabs;    private AppbarLayout appbar;    private VIEwPager vIEwPager;    //标题    String[] Title={"新闻","财经","娱乐"};    List<Fragment> fragments;    @OverrIDe    protected voID onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentVIEw(R.layout.activity_app_bar_layout);        initVIEw();        fragments.add(new Fragment1());        fragments.add(new Fragment2());        fragments.add(new Fragment3());        //通过适配器给vIEwPager添加碎片,我们通过内部类的方式在下面写了一个自定义适配器MyFragmentAdapter        vIEwPager.setAdapter(new MyFragmentAdapter(getSupportFragmentManager(),fragments));        //关联vIEwPager与tablayout        tabs.setupWithVIEwPager(vIEwPager);    }    private voID initVIEw() {        fragments=new ArrayList<>();        tabs = (TabLayout) findVIEwByID(R.ID.tabs);        appbar = (AppbarLayout) findVIEwByID(R.ID.appbar);        vIEwPager = (VIEwPager) findVIEwByID(R.ID.vIEwPager);    }    //自定义适配器    public class MyFragmentAdapter extends FragmentPagerAdapter {        List<Fragment> List;        public MyFragmentAdapter(FragmentManager fm,List<Fragment> List) {            super(fm);            this.List=List;        }        @OverrIDe        public Fragment getItem(int position) {            return List.get(position);        }        @OverrIDe        public int getCount() {            return List.size();        }//这个方法可将标题对应上碎片        @Nullable        @OverrIDe        public CharSequence getPageTitle(int position) {            return Title[position];        }    }}

完成啦,快去运行看一看吧!

总结

以上是内存溢出为你收集整理的Android-----AppBarLayout 的使用全部内容,希望文章能够帮你解决Android-----AppBarLayout 的使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1062832.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存