0

我有布局,其中包含两部分:标题和正文。标题包含 TextView 和图像。标题高度可以通过编程方式更改。并且标题的图像和文本必须分别缩放。图像缩放可以,但文本不需要缩放。是否有可能在 Android 上以及如何做到这一点?

我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:ignore="UseCompoundDrawables" >

        <TextView
            android:id="@+id/title_text"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/app_name" />

        <ImageView
            android:id="@+id/edit_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="@string/edit"
            android:src="@drawable/widget_edit" />
    </LinearLayout>

    <TextView
        android:id="@+id/content_text"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
4

2 回答 2

1

我不认为这对于默认的 TextView 是可行的——至少在没有一些黑客攻击的情况下是不可行的。

我会尝试为此使用自定义 View 类,并在其 Canvas 上绘制文本。在绘图调用期间,您知道画布的确切宽度和高度,并使用适当的字体大小绘制文本。

于 2012-09-10T09:59:06.183 回答
1

如果您以编程方式更改高度,您可以定义一个公式并计算文本的大小。我认为这是独特的方式。

您可以实现自定义视图并在父级高度的函数中定义大小。

存在一种单位,可以是util,sp(Scale-independent Pixels)。但这个比例与系统中设置的文本大小有关。

于 2012-09-10T10:05:16.123 回答