在ViewPager中设置文本格式

时间:2018-09-28 08:41:05

标签: android kotlin android-viewpager

我是Android中的ViewPagers的新手,并试图在viewPager中编辑文本

现在,我将一个包含3个字符串的对象交给我的ViewPager。我想要达到的目的是使其像这样显示:

String1 (bold and centered inside the ViewPager)
<br>
String2 (Just a normal Text)
<br>
String3 (bold and centered inside the ViewPager)

这是我的XML文件中的TextView,我将其交给了PageAdapter:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

    <TextView
            android:id="@+id/textViewAdapter"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:textColor="#fff"
            android:textSize="20dp"
            android:layout_alignParentTop="true"
            android:scaleType="fitXY"/>

</RelativeLayout>

我可以在代码中进行格式设置,还是在XML文件中需要2个额外的TextViews? 如果我需要提供更多代码,请告诉我,但我也不知道还有什么重要

欢迎任何帮助

0 个答案:

没有答案