ProjectLaogai/app/src/main/java/org/mosad/seil0/projectlaogai/uicomponents/MealLinearLayout.kt

53 lines
1.6 KiB
Kotlin
Raw Normal View History

2018-10-25 16:44:36 +02:00
/**
* ProjectLaogai
*
* Copyright 2019-2020 <seil0@mosad.xyz>
2018-10-25 16:44:36 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*/
2018-10-29 13:04:20 +01:00
package org.mosad.seil0.projectlaogai.uicomponents
2018-10-24 18:22:05 +02:00
import android.content.Context
import android.view.View
2019-03-03 20:46:51 +01:00
import android.widget.LinearLayout
import androidx.cardview.widget.CardView
import kotlinx.android.synthetic.main.linearlayout_meal.view.*
import org.mosad.seil0.projectlaogai.R
import org.mosad.seil0.projectlaogai.hsoparser.Meal
2018-10-25 16:44:36 +02:00
class MealLinearLayout(context: Context?): LinearLayout(context) {
2018-10-24 18:22:05 +02:00
init {
CardView.inflate(context, R.layout.linearlayout_meal, this)
}
2018-10-25 16:44:36 +02:00
fun setMeal(meal: Meal) {
txtView_MealHeading.text = meal.heading
2018-10-25 16:44:36 +02:00
meal.parts.forEachIndexed { partIndex, part ->
txtView_Meal.append(part)
if(partIndex < (meal.parts.size - 1))
txtView_Meal.append("\n")
}
2018-10-25 16:44:36 +02:00
}
fun disableDivider() {
divider_meal.visibility = View.GONE
2018-10-25 16:44:36 +02:00
}
2018-10-24 18:22:05 +02:00
}