android 好看的标签栏,说说 Android 的 Material Design 设计(五)——可折叠式标题栏...

2023-11-11 02:40

本文主要是介绍android 好看的标签栏,说说 Android 的 Material Design 设计(五)——可折叠式标题栏...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1 CollapsingToolbarLayout 布局

CollapsingToolbarLayout 是基于 Toolbar 的布局。它可以让 Toolbar 的效果变得更加华丽。

注意:CollapsingToolbarLayout 只能作为 AppBarLayout 的直接子布局。

现在我们创建一个空活动来显示猫的详情:

a8e7adcc189d?utm_source=oschina-app

然后在 activity_cat.xml 中编写界面布局,主要分为两个部分,一个是标题栏,另一个是内容:

xmlns:material="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/app_bar_layout"

android:layout_width="match_parent"

android:layout_height="250dp">

android:id="@+id/collapsing_toolbar_layout"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

material:contentScrim="?attr/colorPrimary"

material:layout_scrollFlags="scroll|exitUntilCollapsed">

android:id="@+id/cat_image_view"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:scaleType="centerCrop"

material:layout_collapseMode="parallax" />

android:id="@+id/toolbar"

android:layout_width="match_parent"

android:layout_height="?attr/actionBarSize"

material:layout_collapseMode="pin" />

android:layout_width="match_parent"

android:layout_height="match_parent"

material:layout_behavior="@string/appbar_scrolling_view_behavior">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginBottom="15dp"

android:layout_marginLeft="15dp"

android:layout_marginRight="15dp"

android:layout_marginTop="35dp"

material:cardCornerRadius="4dp">

android:id="@+id/cat_text_view"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_margin="10dp" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_margin="16dp"

android:src="@drawable/comment"

material:layout_anchor="@id/app_bar_layout"

material:layout_anchorGravity="bottom|end" />

整体布局使用 CoordinatorLayout。

定义了 xmlns:material="http://schemas.android.com/apk/res-auto" 命名空间。

标题栏布局:

标题栏布局使用 AppBarLayout,内层嵌套了 CollapsingToolbarLayout。

CollapsingToolbarLayout 中的 contentScrim 可指定当标题栏趋于折叠以及折叠之后的背景色;而 layout_scrollFlags 中的 scroll 表示 CollapsingToolbarLayout 会随着内容的滚动而滚动; layout_scrollFlags 中的 exitUntilCollapsed 表示折叠后会保留在界面中(不会被移出屏幕)。

在 CollapsingToolbarLayout 中,定义了 ImageView 与 Toolbar。即这个标题栏是由普通标题栏加图片组合而成的。其中有一个 layout_collapseMode 属性,它用于设置折叠模式。pin 表示在折叠过程中使用保持,就像被大头针定住了一样;parallax 表示在折叠过程中会产生视差。

内容布局:

外层使用 NestedScrollView,它不仅支持使用滚动的方式来查看屏幕外的数据,还能嵌套响应滚动事件。我们还通过 layout_behavior 来指定布局行为。

因为 NestedScrollView 内部只允许存在一个直接的子布局,所以我们可以先嵌套一个 LinearLayout,然后再其内部放入更多内容。

这里使用 TextView 来显示内容,然后把它放入 CardView (卡片式布局)中。

我们为 CardView 设置了外边距,还设置了圆角。这些工作都是为了让页面变得更好看。

最后我们还加了一个悬浮按钮(FloatingActionButton):

首先把按钮图片 png ,放在 drawable 文件夹下。

通过 layout_anchor 来设置锚点,让悬浮按钮出现在标题栏区域内。

通过 layout_anchorGravity 让按钮出现在标题栏区域的右下角。

2 活动类

public class CatActivity extends AppCompatActivity {

/**

* 猫名

*/

public static final String CAT_NAME = "cat_name";

/**

* 猫图片 ID

*/

public static final String CAT_IMAGE_ID = "cat_image_id";

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_cat);

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);

setSupportActionBar(toolbar);

ActionBar actionBar = getSupportActionBar();

if (actionBar != null) {//启用 HomeAsUp 按钮(返回箭头)

actionBar.setDisplayHomeAsUpEnabled(true);

}

Intent intent = getIntent();

//设置标题

CollapsingToolbarLayout layout = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar_layout);

String catName = intent.getStringExtra(CAT_NAME);

layout.setTitle(catName);

//设置图片

int catImageId = intent.getIntExtra(CAT_IMAGE_ID, 0);

ImageView imageView = (ImageView) findViewById(R.id.cat_image_view);

Glide.with(this).load(catImageId).into(imageView);//加载图片

//设置内容

TextView contentView = (TextView) findViewById(R.id.cat_text_view);

contentView.setText(generateContent(catName));

}

/**

* 生成内容

*

* @param catName 猫名

* @return

*/

private String generateContent(String catName) {

//实践中,会根据参数名称,返回对应的内容

return "俄罗斯蓝猫(Russian Blue),历史上曾被称做阿契安吉蓝猫,曾有过三种不同的名字。最初是阿契安吉蓝猫,直到20世纪40年代才有现在的名字,另外有段时间它则叫做马耳他猫。证据显示,这种猫确实原产于俄罗斯,因为已在俄罗斯寒带地区发现了同种的猫。俄罗斯蓝猫体型细长,大而直立的尖耳朵,脚掌小而圆,走路像是用脚尖在走。身上披着银蓝色光泽的短被毛,配上修长苗条的体型和轻盈的步态,尽显一派猫中的贵族风度。";

}

@Override

public boolean onOptionsItemSelected(MenuItem item) {

switch (item.getItemId()){

case android.R.id.home://点击 HomeAsUp 按钮时

finish();//关闭当前活动(即返回上一个活动)

return true;

}

return super.onOptionsItemSelected(item);

}

}

我们在标题栏启用 HomeAsUp 按钮(返回箭头),用于关闭当前活动。

将 CollapsingToolbarLayout 传递过来的猫类型,作为标题。

接着使用 Glide 来加载图片。

然后设置内容。

最后在 onOptionsItemSelected 中处理 HomeAsUp 按钮的点击事件。

现在我们要处理首页活动 RecyclerView 的点击事件,当点击某只猫时,打开它的详情活动页:

public class CatAdapter extends RecyclerView.Adapter {

private Context context;

private List cats = new ArrayList<>();

public CatAdapter(List cats) {

this.cats = cats;

}

@Override

public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

if (context == null) {//设置上下文环境

context = parent.getContext();

}

View view = LayoutInflater.from(context).inflate(R.layout.cat_item, parent, false);

//处理 RecyclerView 点击事件

final ViewHolder holder = new ViewHolder(view);

holder.cardView.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

int position = holder.getAdapterPosition();

Cat cat = cats.get(position);

Intent intent = new Intent(context, CatActivity.class);

intent.putExtra(CatActivity.CAT_NAME, cat.getType());

intent.putExtra(CatActivity.CAT_IMAGE_ID, cat.getImgId());

context.startActivity(intent);

}

});

return holder;

}

...

}

运行效果:

a8e7adcc189d?utm_source=oschina-app

3 融合系统顶部状态栏

利用 fitsSystemWindows 属性我们可以将标题栏中的图片与系统顶部状态栏融合起来。

注意: 因为我们这里的 ImageView 嵌套的很深,所以必须把它以及它的祖先布局中的 fitsSystemWindows 都设置为 true,才能真正生效:

xmlns:material="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true"

>

android:id="@+id/app_bar_layout"

android:layout_width="match_parent"

android:layout_height="250dp"

android:fitsSystemWindows="true"

>

android:id="@+id/collapsing_toolbar_layout"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

material:contentScrim="?attr/colorPrimary"

material:layout_scrollFlags="scroll|exitUntilCollapsed"

android:fitsSystemWindows="true"

>

android:id="@+id/cat_image_view"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:scaleType="centerCrop"

material:layout_collapseMode="parallax"

android:fitsSystemWindows="true"

/>

...

...

接着把状态栏的颜色设置为透明,即

@android:color/transparent

因为这个属性从 API21 (Android 5.0 +)才出现,所以我们必须做差异化实现。

在 res 目录下新建一个 values-v21 目录,然后再新建一个 styles.xml:

@android:color/transparent

这样设计是因为只有 Android 5.0+ 才会去读取该文件。

我们还需要在 values/styles.xml 中新建一个不包含实际内容的 catActivityTheme,确保 Android 5.0 之前的版本不会抛错:

最后在 AndroidManifest.xml 中的 CatActivity 活动,设置刚刚定义的主题:

android:theme="@style/catActivityTheme"

>

运行效果:

a8e7adcc189d?utm_source=oschina-app

就算是现在的刘海屏,也可以适配的很好哦O(∩_∩)O~

这篇关于android 好看的标签栏,说说 Android 的 Material Design 设计(五)——可折叠式标题栏...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/386995

相关文章

Python中的可视化设计与UI界面实现

《Python中的可视化设计与UI界面实现》本文介绍了如何使用Python创建用户界面(UI),包括使用Tkinter、PyQt、Kivy等库进行基本窗口、动态图表和动画效果的实现,通过示例代码,展示... 目录从像素到界面:python带你玩转UI设计示例:使用Tkinter创建一个简单的窗口绘图魔法:用

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

python解析HTML并提取span标签中的文本

《python解析HTML并提取span标签中的文本》在网页开发和数据抓取过程中,我们经常需要从HTML页面中提取信息,尤其是span元素中的文本,span标签是一个行内元素,通常用于包装一小段文本或... 目录一、安装相关依赖二、html 页面结构三、使用 BeautifulSoup javascript

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

怎么让1台电脑共享给7人同时流畅设计

在当今的创意设计与数字内容生产领域,图形工作站以其强大的计算能力、专业的图形处理能力和稳定的系统性能,成为了众多设计师、动画师、视频编辑师等创意工作者的必备工具。 设计团队面临资源有限,比如只有一台高性能电脑时,如何高效地让七人同时流畅地进行设计工作,便成为了一个亟待解决的问题。 一、硬件升级与配置 1.高性能处理器(CPU):选择多核、高线程的处理器,例如Intel的至强系列或AMD的Ry

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存