两个TextView控件居中显示

Posted 龙种人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个TextView控件居中显示相关的知识,希望对你有一定的参考价值。

通过一个线性布局将两个TextView控件包装在一起,设置LinearLayout的layout_centerInParent属性为true即可。代码如下

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:orientation="horizontal">

    <TextView
        android:id="@+id/igame_wb_details_activity_tv_title_lol_privilege"
        android:layout_width="95dp"
        android:layout_height="match_parent"
        android:layout_toLeftOf="@+id/igame_wb_details_activity_tv_center"
        android:textColor="@color/igame_text_normal_color"
        android:textSize="@dimen/igame_textsize_s"
        android:text="文本1"/>
    
    <TextView
        android:id="@+id/igame_wb_details_activity_tv_privilege_type"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_toRightOf="@+id/igame_wb_details_activity_tv_title_lol_privilege"
        android:textColor="@color/igame_normal_op_color"
        android:layout_marginLeft="5dp"
        android:textSize="@dimen/igame_textsize_s"
        android:text="文本2"/>

</LinearLayout>

 

以上是关于两个TextView控件居中显示的主要内容,如果未能解决你的问题,请参考以下文章

安卓怎么设置textview内容

Android中如何让控件居中

重写TextView,实现圆形背景,文本居中显示

ArrayAdapter 要求资源 ID 为 TextView,ListView 无法转换为 TextView

android自己定义换行居中CenterTextView

Android 自定义TextView实现文字和图片居中显示