]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/java/com/stoutner/privacycell/adapters/ProtocolArrayAdapter.kt
Create a protocols activity. https://redmine.stoutner.com/issues/774
[PrivacyCell.git] / app / src / main / java / com / stoutner / privacycell / adapters / ProtocolArrayAdapter.kt
diff --git a/app/src/main/java/com/stoutner/privacycell/adapters/ProtocolArrayAdapter.kt b/app/src/main/java/com/stoutner/privacycell/adapters/ProtocolArrayAdapter.kt
new file mode 100644 (file)
index 0000000..77576ac
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * Copyright © 2021-2022 Soren Stoutner <soren@stoutner.com>.
+ *
+ * This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
+ *
+ * Privacy Cell 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.
+ *
+ * Privacy Cell 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 Privacy Cell.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package com.stoutner.privacycell.adapters
+
+import android.content.Context
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import android.widget.ArrayAdapter
+import android.widget.TextView
+
+import com.stoutner.privacycell.R
+
+class ProtocolArrayAdapter(context: Context, protocolArrayList: ArrayList<Pair<String, Boolean>>) : ArrayAdapter<Pair<String, Boolean>>(context, 0, protocolArrayList) {
+    override fun getView(position: Int, convertView: View?, parent: ViewGroup): View {
+        // Create a populated view and inflate the layout.
+        val populatedView = if (getItem(position)!!.second) {  // The protocol is a header entry.
+            LayoutInflater.from(context).inflate(R.layout.protocol_header_textview, parent, false)
+        } else {  // The protocol is not a header entry.
+            LayoutInflater.from(context).inflate(R.layout.protocol_item_textview, parent, false)
+        }
+
+        // Get a handle for the text view.
+        val textView = populatedView.findViewById<TextView>(R.id.textview)
+
+        // Populate the text view with the corresponding item from the protocol array list.
+        textView.text = getItem(position)!!.first
+
+        // Return the populated view.
+        return populatedView
+    }
+}
\ No newline at end of file