• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2023 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 
18 package com.android.wallpaper.picker.common.button.ui.viewbinder
19 
20 import android.content.Context
21 import android.view.LayoutInflater
22 import android.view.View
23 import android.view.ViewGroup
24 import android.widget.Button
25 import androidx.annotation.LayoutRes
26 import com.android.wallpaper.R
27 import com.android.wallpaper.picker.common.button.ui.viewmodel.ButtonViewModel
28 import com.android.wallpaper.picker.common.text.ui.viewbinder.TextViewBinder
29 
30 object ButtonViewBinder {
31     /** Returns a newly-created [View] that's already bound to the given [ButtonViewModel]. */
createnull32     fun create(
33         context: Context,
34         parent: ViewGroup,
35         viewModel: ButtonViewModel,
36         @LayoutRes buttonLayoutResourceId: Int = R.layout.dialog_button,
37     ): View {
38         val button: Button = LayoutInflater.from(context).inflate(buttonLayoutResourceId, parent, false) as Button
39         button.setTextColor(parent.resources.getColor(viewModel.style.textColorRes, null))
40         button.setBackgroundResource(viewModel.style.backgroundDrawableRes)
41         button.setOnClickListener { viewModel.onClicked?.invoke() }
42 
43         TextViewBinder.bind(
44             view = button,
45             viewModel = viewModel.text,
46         )
47 
48         return button
49     }
50 }
51