3

singleLine を持つ単純な TextView があります。高さを match_parent/fill_parent に設定したいのですが、Android の動作は wrap_content のみです。

TextView がすべての高さを取るようにする方法はありますか?

Tkx

編集 :

これは私が得るものです:

ここに画像の説明を入力 と私のレイアウト:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

<TextView
        android:id="@+id/date"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:gravity="center"
        android:paddingLeft="13dp"
        android:paddingRight="3dp"
        android:textColor="@android:color/white"
        android:textStyle="bold" />

        [...]

</RelativeLayout>
4

2 に答える 2

0

そのTextView親の幅には、 を使用できますwrap_content

于 2012-08-02T10:14:42.083 に答える
0

TextViewの高さをmatch_parent/fill_parentに設定できます。そして、必要に応じて、そのTextViewの重力その他すべてのプロパティを変更します。

これで十分でない場合は、正確に何をしたいのか教えてください。

編集:

あなたの新しい編集されたコードに従って、私はあなたのコードに取り組みました。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent" 
android:layout_width="match_parent">
<TextView android:id="@+id/date" 
    android:layout_width="wrap_content"
    android:layout_height="match_parent" 
    android:gravity="center"
    android:paddingLeft="13dp" 
    android:paddingRight="3dp"
    android:textStyle="bold" 
    android:textColor="#ffffff" 
    android:text="dateText"/>
</RelativeLayout>

画面全体のcentral_vertical位置にTextViewが表示されます。

このコードを試してください。その作業。これらで行ったように、 RelativeLayoutTextViewを変更します。

于 2012-08-02T10:15:33.157 に答える