融会贯通Android Jetpack Compose中的Snackbar

 更新时间:2023年01月11日 11:42:00   作者:我是绿色大米呀  
这篇文章主要为大家介绍了融会贯通Android Jetpack Compose中的Snackbar方法及使用,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

正文

开始写Compose的时候,真的有点不习惯。思考方式和以前完全不同,有点类似ReactNative。 写习惯了之后,还真有点欲罢不能,行云流水~

Snackbar感觉就是Toast Plus版,可以自定义视图,还可以进行交互,可以用在很多地方实现意想不到的效果。

主要的实现思路

主要的实现思路有两部步:

  • 1.Snackbar的控制逻辑
  • 2.Snackbar的UI部分

Snackbar UI部分

class MainActivity : ComponentActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        actionBar?.hide()
        setContent {
            ContentView(Modifier.fillMaxSize())
        }
    }
}
@Composable
fun ContentView(modifier: Modifier) {
    val context = LocalContext.current
    val snackBarState = remember {
        SnackbarHostState()
    }
    val coroutineScope = rememberCoroutineScope()
    Surface(
        color = Color.DarkGray,
        modifier = modifier.fillMaxSize()
    ) {
        Box(modifier = modifier.fillMaxSize()) {
            Button(
                modifier = modifier
                    .align(Alignment.Center)
                    .wrapContentSize()
                ,
                onClick = {
                    coroutineScope.launch {//showSnackbar为suspend函数,要在协成调用
                        snackBarState.showSnackbar("")
                    }
                },
                colors = ButtonDefaults.buttonColors(
                    backgroundColor = Color.White,
                    contentColor = Color.Black
                )
            ) {
                Text(text = "显示SnackBar", fontSize = 16.sp)
            }
            SnackbarHost(
                modifier = modifier.align(Alignment.BottomCenter),
                hostState = snackBarState
            ) {
                // custom snackBar
                CustomSnackBar(
                    title = "我是绿色大米呀",
                    content = "关注点一波~下次不迷路哦!",
                    profileImageResource = R.drawable.head,
                    actionImageResource = R.drawable.back_black_bg,
                    onAction = {}
                )
            }
        }
    }
}
@Composable
fun CustomSnackBar(
    modifier: Modifier = Modifier,
    title: String,
    content: String,
    profileImageResource: Int,
    actionImageResource: Int,
    onAction: () -> Unit
) {
    Snackbar(
        elevation = 0.dp,//去掉阴影
        backgroundColor = Color.Transparent
    ) {
        Box(
            modifier = modifier
                .fillMaxWidth()
                .wrapContentHeight()
        ) {
            Column(
                modifier = modifier
                    .padding(top = 10.dp)
                    .fillMaxWidth()
                    .clip(RoundedCornerShape(10.dp))
                    .background(
                        Brush.verticalGradient(
                            colors = listOf(
                                Color(android.graphics.Color.parseColor("#0ac1ff")),
                                Color(android.graphics.Color.parseColor("#fb2c38"))
                            )
                        )
                    )
                    .padding(start = 78.dp, top = 8.dp, bottom = 12.dp, end = 8.dp),
                horizontalAlignment = Alignment.Start
            ) {
                Text(
                    modifier = modifier.
                        padding(top = 5.dp),
                    text = title,
                    color = Color.White,
                    fontWeight = FontWeight.Bold,
                    fontSize = 22.sp
                )
                Spacer(modifier = modifier.padding(vertical = 2.dp))
                Text(
                    text = content,
                    color = Color.White,
                    fontStyle = FontStyle.Italic,
                    fontSize = 15.sp
                )
            }
            Column(
                modifier = modifier
                    .padding(start = 16.dp),
                horizontalAlignment = Alignment.CenterHorizontally
            ) {
                Card(
                    elevation = 6.dp,
                    shape = RoundedCornerShape(8.dp)
                ) {
                    Image(
                        painter = painterResource(profileImageResource),
                        contentScale = ContentScale.Crop,
                        contentDescription = null,
                        modifier = modifier.size(50.dp)
                    )
                }
            }
            Image(
                painter = painterResource(actionImageResource),
                contentDescription = null,
                contentScale = ContentScale.Fit,
                modifier = modifier
                    .align(Alignment.BottomEnd)
                    .padding(bottom = 10.dp, end = 10.dp)
                    .size(23.dp)
                    .rotate(180f)
                    .clickable(
                        interactionSource = MutableInteractionSource(),
                        indication = null,
                        onClick = onAction
                    )
            )
        }
    }
}

不知道为什么,我的这个Snackbar一直出现在屏幕顶部,如果想让它出现在底部应该如何实现?更多关于Android Jetpack Compose Snackbar的资料请关注脚本之家其它相关文章!

相关文章

  • 详解Android中visibility属性VISIBLE、INVISIBLE、GONE的区别

    详解Android中visibility属性VISIBLE、INVISIBLE、GONE的区别

    在Android开发中,大部分控件都有visibility这个属性,其属性有3个分别为“visible ”、“invisible”、“gone”。主要用来设置控制控件的显示和隐藏。本文就详细的讲解一下。
    2016-12-12
  • Android工具栏顶出转场动画的实现方法实例

    Android工具栏顶出转场动画的实现方法实例

    这篇文章主要给大家介绍了关于Android工具栏顶出转场动画的实现方法,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-09-09
  • Android Glide图片加载(加载监听、加载动画)

    Android Glide图片加载(加载监听、加载动画)

    这篇文章主要为大家详细介绍了Android Glide图片加载的具体实现方法,包括加载监听、加载动画,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-11-11
  • 教你一步步实现Android微信自动抢红包

    教你一步步实现Android微信自动抢红包

    自从微信添加抢红包的功能,微信的电商之旅算是正式开始正式火爆起来。但是作为Android开发者来说,我们首先考虑的是如何实现Android微信自动抢红包呢,下面我们来一起看看吧。
    2016-08-08
  • 一些有效的Android启动优化策略分享

    一些有效的Android启动优化策略分享

    在当今激烈竞争的移动应用市场,应用的启动速度直接影响着用户的第一印象和满意度,Android的启动优化是开发者必须关注的关键领域,本文将详细介绍一些强大有效的Android启动优化策略,帮助你优化应用的启动过程,为用户创造更出色的体验,需要的朋友可以参考下
    2023-08-08
  • Flutter应用程序实现隐私屏幕示例解析

    Flutter应用程序实现隐私屏幕示例解析

    这篇文章主要为大家介绍了Flutter应用程序实现隐私屏幕示例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-09-09
  • Android使用CountDownTimer实现倒计时效果

    Android使用CountDownTimer实现倒计时效果

    这篇文章主要为大家详细介绍了Android使用CountDownTimer实现倒计时效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • Android获取手机号码和运营商信息的方法

    Android获取手机号码和运营商信息的方法

    这篇文章主要介绍了Android获取手机号码和运营商信息的方法,以实例形式完整讲述了获取手机号码和运营商信息的技巧,代码中包含完整的注释说明,需要的朋友可以参考下
    2015-01-01
  • PagerSlidingTabStrip制作Android带标签的多界面滑动切换

    PagerSlidingTabStrip制作Android带标签的多界面滑动切换

    这篇文章主要介绍了使用PagerSlidingTabStrip制作Android带标签的多界面滑动切换效果的方法,PagerSlidingTabStrip是GitHub上的一个开源项目,调用这个库可以少写不少代码XD 需要的朋友可以参考下
    2016-04-04
  • android编程开发之全屏和退出全屏的实现方法

    android编程开发之全屏和退出全屏的实现方法

    这篇文章主要介绍了android编程开发之全屏和退出全屏的实现方法,以实例形式较为详细的分析了Android全屏及退出全屏的页面布局与功能实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-11-11

最新评论