如何设置textview的字体大小等于其高度

时间:2015-06-22 15:59:12

标签: android android-layout

代码是一个包含线性布局的简单xml文件。在线性布局中,我有两个文本视图和另一个包含按钮的线性布局。 我想将字体大小设置为等于textview的高度。我们使用重量和重量和方法得到高度。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/orange"
    android:weightSum="100"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="45"
        android:text="Coming Soon"
        android:gravity="center_vertical"
        android:background="@color/mainscreen" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="10"
        android:text="TextView" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" 
        android:layout_weight="45"
        android:background="@color/mainscreen">

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

    </LinearLayout>



</LinearLayout>

3 个答案:

答案 0 :(得分:0)

您可以以编程方式实现此目的。

TextView defaultTextView = new TextView(context);
float sourceTextSize = defaultTextView.getTextSize();
TextView.setTextSize(sourceTextSize/getResources().getDisplayMetrics().density);

defaultTextView.getTextSize()以像素为单位返回大小,setTextSize(size)以sp作为输入,因此文本会变大。

这里,我们不是直接设置文本大小,而是首先根据密度进行转换。

答案 1 :(得分:0)

为textview绘制一个可绘制的形状。

<solid android:color="@color/your_background_coler"/>

并将其放在textview背景属性中。

答案 2 :(得分:-1)

    We can not set text size like wrap_content,fill_parent or match_parent 
as like textview height so, if you need to set text size equals to 
Textview height than you need to go for fix textview height and text 
size like.... 
    <TextView
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:text="@string/hello_world" 
            android:textSize="50dp"/>