0

ヘッダーと本文の 2 つの部分を含むレイアウトがあります。ヘッダーには 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

プログラムで高さを変更すると、数式を定義してテキストのサイズを計算できます。ユニークな方法だと思います。

カスタム ビューを実装し、親の高さの関数でサイズを定義できます。

util、sp (スケールに依存しないピクセル) のような単位が存在します。ただし、このスケールは、システムで設定されたテキストのサイズに合わせて調整されます。

于 2012-09-10T10:05:16.123 に答える