Как сделать часть переработчика View жирным? - PullRequest
0 голосов
/ 17 сентября 2018

У меня есть один EditText и один просмотрщик. Я добавляю «Список» в свое окно повторного просмотра, и теперь я хочу сделать первые буквы жирным шрифтом этого повторного представления. Но я хочу сделать жирным только те буквы, которые написаны в моем editText, поэтому я не могу определить его только в xml. Как я могу сделать часть моего списка жирным шрифтом, как

Бо LD1

Бо LD2

Вот мой макет Файл:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Abfahrtsmonitor">

<EditText
    android:id="@+id/editText"
    android:layout_width="360dp"
    android:layout_height="47dp"
    android:ems="10"
    android:hint="Suche"
    android:inputType="textPersonName"
    tools:layout_editor_absoluteX="16dp"
    tools:layout_editor_absoluteY="7dp" />

<android.support.v7.widget.RecyclerView
    android:id="@+id/Recycleview"
    android:layout_width="370dp"
    android:layout_height="494dp"
    android:layout_marginEnd="4dp"
    android:layout_marginTop="8dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/editText" />
</android.support.constraint.ConstraintLayout>

А вот часть моего кода котлина:

class Abfahrtsmonitor : AppCompatActivity() {
 override fun onCreate(savedInstanceState: Bundle?) {
 super.onCreate(savedInstanceState)
    setContentView(R.layout.abfahrtsmonitor)
    Recycleview.layoutManager = LinearLayoutManager(this)
HaltestellenEingabe_dummy.add(helpname)
Recycleview.adapter = listadapter(HaltestellenEingabe_dummy, this)
  var textview = findViewById<TextView>(R.id.editText)
    textview.addTextChangedListener(object : TextWatcher {

        override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {
        }
        override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {
        }
        override fun afterTextChanged(s: Editable) {
            println("1")
            HaltestellenEingabe_dummy.clear()
            for(i in 0..Haltestellen.size-1){
                var inttext=0
                var inteingabe=0
                if(textview.text.toString()==Haltestellen[i].subSequence(0,textview.length()).toString()){     //If the same letters are used
                    HaltestellenEingabe_dummy.add(Haltestellen[i]) // Here I would like to define the layout of my Segments.
                }
            }
            Recycleview.adapter.notifyDataSetChanged()
        }
    })

Здесь ListAdapter:

class listadapter(val items : ArrayList<String>, val context: Context) : RecyclerView.Adapter<ViewHolder>() {

// Gets the number of animals in the list
override fun getItemCount(): Int {
    return items.size
}

// Inflates the item views
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
    return     ViewHolder(LayoutInflater.from(context).inflate(R.layout.listviewfile, parent, false))
}

// Binds each animal in the ArrayList to a view
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
    holder?.haltestellenliste?.text = items.get(position)
}
}
class ViewHolder (view: View) : RecyclerView.ViewHolder(view) {
// Holds the TextView that will add each animal to
val haltestellenliste = view.aufzaehlunghaltestellen
}

1 Ответ

0 голосов
/ 17 сентября 2018

В onBindViewHolder, где вы устанавливаете текст, вы можете использовать SpannableStringBuilder, чтобы выделить первую букву жирным шрифтом:

holder?.haltestellenliste?.text = SpannableStringBuilder(items[position]).apply{
    setSpan(StyleSpan(Typeface.BOLD), 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...