代码之家  ›  专栏  ›  技术社区  ›  YoungCodingStudent

如何使用kotlin android更改listview中的自定义字体

  •  1
  • YoungCodingStudent  · 技术社区  · 6 年前

    我在互联网上寻找很多方法来解决我的问题,但我没有找到一个好的解决方案。

    目标:如何在ListView中更改字体?

    XML布局代码

    <ListView
    android:id="@+id/tvListDrinki"
    android:layout_width="match_parent"
    android:layout_height="444dp"
    android:background="@color/googleWhite"
    android:layout_marginTop="196dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintHorizontal_bias="0.518"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="1.0" />
    

    列表视图票证代码

    <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/background_lista_drinkow"
    android:orientation="horizontal">
    
    <ImageView
        android:layout_marginLeft="20dp"
        android:id="@+id/ivDrinkImage"
        android:layout_width="50pt"
        android:layout_height="50pt"
        android:layout_weight="1"
        android:padding="10dp"
        app:srcCompat="@drawable/martini" />
    
    <LinearLayout
        android:layout_width="90pt"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:gravity="center"
        android:orientation="vertical">
    
        <TextView
            android:id="@+id/tvName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:text="Martini"
            android:textColor="@color/white"
            android:textSize="24dp"
            android:textStyle="bold" />
    
    </LinearLayout>
    

    在我的Kotlin代码中,我有一个工作的标准adpater和listView元素 Kotlin代码

        override fun getView(p0: Int, p1: View?, p2: ViewGroup?): View {
    
            val drink= listOFDrinks[p0]
            var inflator = context!!.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
            var myView = inflator.inflate(R.layout.drinki_ticket,null)
            myView.tvName.text= drink.name!!
            myView.ivDrinkImage.setImageResource(drink.image!!)
            val face=Typeface.createFromAsset(assets, "Fonts/Thin.ttf")
            myView.tvName.setTypeface(face)
            return myView
    
        }
    
    3 回复  |  直到 6 年前
        1
  •  2
  •   Jay Rathod Frank Singhal    6 年前

    在里面 科特林 你可以这样做。

    myView.tvName.typeface = Typeface.DEFAULT_BOLD
    

    对于自定义字体,您可以使用 资源比较。获取字体 如下所示。

    val myCustomFont : Typeface? = ResourcesCompat.getFont(this, R.font.custom_font)
    myView.tvName.typeface = myCustomFont
    

    从…起 资产 文件夹

    val typeface = Typeface.createFromAsset(getContext().assets, "font/custom_font.ttf")
    myView.tvName.typeface = typeface
    
        2
  •  0
  •   kgandroid m.qadhavi    6 年前

    更改文本视图的字体 ,在适配器中编写以下代码:

    Typeface face = Typeface.createFromAsset(getAssets(),
                "fonts/helloworld.ttf");
    myView.tvName.setTypeface(face);
    

    哪里 你好世界ttf公司 字体文件是否存储在 项目结构的资产文件夹

        3
  •  0
  •   Vir Rajpurohit    6 年前

    您可以通过以下方式设置字体

    Typeface fType = Typeface.createFromAsset(getAssets(),"fonts/Robotic.ttf"); 
    tvname.setTypeface(fType);
    

    要执行上述操作,您需要在assets和keept下创建字体。字体下的ttf文件。

    还有一种方法可以在res目录下创建fonts文件夹,并将ttf文件保存在其中。

    然后在xml中

    <TextView
        android:id="@+id/tvName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:text="Martini"
        android:textColor="@color/white"
        android:textSize="24dp"
        **android:fontFamily="@font/Robotic.ttf"**
        android:textStyle="bold" />