2

我希望你们都做得很好。

我对 Kotlin 很陌生,所以请耐心等待。

我在 jetpack compose 中创建了一个页面,如下图所示,它需要装饰,但至少我想实现该功能。 简单的应用程序界面,左侧是惰性列,右侧是数据显示。

左边是一个惰性列,显示来自 arraylist 的项目列表。惰性列中有可点击的卡片。

我需要的是,一旦使用从列中单击一个项目,其余项目详细信息将显示在右侧的第二个可组合项中。

代码看起来像这样

@Composable
fun Greeting() {
    Row(
        modifier = Modifier.fillMaxSize()
    ) {
        LazyColumn(
            modifier = Modifier
                .fillMaxHeight()
                .width(150.dp)
                .background(color = Color.LightGray)
        ) {
            items(photoList) { item ->
                ProfileCard(photo = item) { <--- i need the item into the other composable.
//                        photoContent(
//                            id = item.id,
//                            owner = item.owner,
//                            secret = item.secret,
//                            server = item.server,
//                            farm = item.farm,
//                            title = item.title,
//                            ispublic = item.ispublic,
//                            isfriend = item.isfriend,
//                            isfamily = item.isfamily,
//                            url_s = item.url_s,
//                            height_s = item.height_s,
//                            width_s = item.width_s
//                        )
                }
            }
        }
        photoContent(
            id = "",
            owner = "",
            secret = "",
            server = "",
            farm = 0,
            title = "",
            ispublic = 0,
            isfamily = 0,
            isfriend = 0,
            url_s = "",
            height_s = 0,
            width_s = 0
        )
    }
}

此点击功能来自显示的卡片

@Composable
fun ProfileCard(photo: photo, clickAction: () -> Unit) {
    Card( //We changed the default shape of Card to make a cut in the corner.
        modifier = Modifier
            .padding(top = 4.dp, bottom = 4.dp, start = 16.dp, end = 16.dp)
            .fillMaxWidth()
            .wrapContentHeight(
                align = Alignment.Top
            )
            .clickable { clickAction.invoke() }, //<-- moving the action to main composable.
        elevation = 8.dp,
        backgroundColor = Color.White // Uses Surface color by default, so we have to override it.
    ) {
        Row(
            modifier = Modifier.fillMaxWidth(),
            verticalAlignment = Alignment.CenterVertically,
            horizontalArrangement = Arrangement.Start
        ) {
            ProfileContent(photo, Alignment.Start)
        }
    }
}

我尝试了几种方法将数据传递到其他可组合但我总是得到错误:

@composable 调用只能在 @composable 函数的上下文中发生

而且我无法删除@Composable注释,因为它具有可组合的内容...

我怎样才能以这种方式传递数据?或者没有导航就不可能?但这需要用户打开另一个页面而不是当前页面......

4

2 回答 2

1

听着孩子,你需要在这里改变你的思维方式。

好的,让我们深入研究

Jetpack Compose 的核心是状态,状态(主要)以变量的形式保存。如果一个变量在很多地方被用作状态,你必须确保它被很好地维护。不允许随意修改和读取。因此,存储状态的正确方法是在ViewModel.

所以首先创建一个虚拟机,比如

class ProfileViewModel : ViewModel() {

/*This variable shall store the photo,
Which I plan to use as an ID for the Profile Card.*/

    var selectedProfile by mutableStateOf(Photo(/*Default Arguments*/)) //Store state as mutableStateOf to ensure proper recompostions
        private set //Do not allow external modification, i.e., outside the ViewModel

    //We'll be modifying the variable through this method
    fun onSelectProfile(photo: Photo) {
        selectedProfile = Photo
    }
}

这只是一个简单的演示,所以我将视图模型限制于此。

继续进行活动,我们初始化视图模型

imports ...

class MainActivity : ComponentActivity() {
    private val profileViewModel by viewModels<ProfileViewModel>()
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        
        Greeting(
                selectedProfile = profileViewModel.selectedProfile
                onSelectProfile = profileViewModel::onSelectProfile
        )

}

很明显,我对您的 Greeting Composable 做了一些修改。让我们看看它们是什么:-

我基本上添加了两个参数。现在学习这个。在任何需要修改存储在使用位置以外的其他地方的状态,并且有时还需要修改它的情况下,您必须将两个参数传递给可组合对象 - 一个用于读取值,一个用于写入值. 有道理不是吗。这就是我在这里所做的。

我们将值从存储的地方向下传递,将其提供给可组合对象。并且只是为了允许可组合触发修改,我们传递了一个onChange参数,该参数一直链接到存储位置。在这种情况下,我们将您的 Greeting Composable 链接onSelectProfileonSelectProfileviewmodel 中定义的内容。因此,调用者onSelectProfile是 Greeting Composable,但该方法最终在 viewmodel 内部被调用,因为它传递了。当视图模型onSelectProfile被执行时,selectedProfile变量会被更新(参见视图模型中的方法,它会更新变量)。现在,Composable 正在读取变量,因此,composable 本身获取变量的更新值(因为我们正在使用mutableStateOf,所以触发了重组)。

因此,看看可组合

@Composable
fun Greeting(
    selectedProfile: Photo,
    onSelectProfile: (photo: Photo) -> Unit
) {
    Row(
        modifier = Modifier.fillMaxSize()
    ) {
        LazyColumn(
            modifier = Modifier
                .fillMaxHeight()
                .width(150.dp)
                .background(color = Color.LightGray)
        ) {
            items(photoList) { item ->
                ProfileCard(photo = item, clickAction = onSelectProfile(item)) //We pass the photo like that
            }
        }
        photoContent(
            id = selectedProfile.id,
            owner = selectedProfile.,
            secret = selectedProfile.<respectiveProperty>,
            server = selectedProfile.<respectiveProperty>,
            farm = selectedProfile.<respectiveProperty>,
            title = selectedProfile.<respectiveProperty>,
            ispublic = selectedProfile.<respectiveProperty>,
            isfamily = selectedProfile.<respectiveProperty>,
            isfriend = selectedProfile.<respectiveProperty>,
            url_s = selectedProfile.<respectiveProperty>,
            height_s = selectedProfile.<respectiveProperty>,
            width_s = selectedProfile.<respectiveProperty>
        )
    }
}

你看这就是你一直在做的事情。您创建了一个clickAction()作为参数,不是吗?你正在经历同样的过程,你只需要继续向上。

你看,这里的事件沿着层次结构向上流动,导致视图模型,然后将变量的更新值(因此,状态)传递给可组合对象。在任何事件向上流动而状态向下流动的系统中,我们称之为单向数据流,请注意,这是 Compose 的核心。建立此数据流有一些规则。阅读文档并参加 Compose State Codelab 来了解它,尽管这里的概念已经很清楚了。

谢谢!

旁注:还有其他方法可以初始化 ViewModel。建议使用工厂。检查文档。祝你学习编码好运。

于 2021-08-07T19:23:52.760 回答
1

基本上,您需要为您的选择创建一个状态。看这个例子:

假设这门课是你的Photo课...

data class MyUser(
    val name: String,
    val surname: String
)

然后,像这样定义您的屏幕:

@Composable
fun MyScreen(users: List<MyUser>) {
    // This state will control the selection
    var selectedUser by remember {
        mutableStateOf<MyUser?>(null)
    }
    Row(Modifier.fillMaxSize()) {
        LazyColumn(
            Modifier
                .weight(.3f)
                .background(Color.Gray)) {
            items(users) {
                // This would be your ProfileCard
                Text(
                    text = "${it.name} - ${it.surname}",
                    modifier = Modifier
                        .clickable { 
                            // when you click on an item, 
                            // the state is updated
                            selectedUser = it 
                        }
                        .padding(16.dp)
                )
            }
        }
        Column(Modifier.weight(.7f)) { 
            // if the selection is not null, display it... 
            // this would be your PhotoContent
            selectedUser?.let {
                Text(it.name)
                Text(it.surname)
            }
        }
    }
}

像这样调用这个函数......

@Composable
fun Greeting() {
    // Just a fake user list...
    val users = (1..50).map { MyUser("User $it", "Surname $it") }
    MyScreen(users = users)
}

会是这样

在此处输入图像描述

于 2021-08-07T18:15:35.380 回答