0

私はAndroidアプリケーションを初めて使用し、textviewを使用して高さと幅を設定しますが、Androidアプリケーションでx、y値を設定する方法がわかりませんでした。助けてください

前もって感謝します

Here i tried:

 <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Select Your country"/>
4

3 に答える 3

0

x と y の位置はAbsoluteLayoutでのみ使用できます。このような

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
        <Button android:layout_height="wrap_content"
            android:layout_width="wrap_content" 
            android:id="@+id/button1" 
            android:layout_x="104dp" 
            android:text="Button" 
            android:layout_y="54dp"></Button>
</AbsoluteLayout>

このサイトで他のレイアウトを見る

于 2012-07-18T10:21:14.257 に答える
0

ビュー(テキストビューなど)の高さと幅を設定したいIMの権利がある場合は、xmlレイアウトで行うことができます。例えば ​​:

 <TextView
    android:id="@+id/textView1"
    android:layout_width="DESIRED WIDTH"
    android:layout_height="DESIRED HEIGHT"
    android:text="Select Your country"/>

高さと幅の値を設定するだけです。

または、実行時に設定したい場合は、そのようにすることができます

TextView textView =(TextView)findViewById(R.id.textView1);
textView.setWidth(DESIRED WIDTH);
textView.setHeight(DESIRED HEIGHT);

希望の高さと希望の幅はあなた次第です。

それが役立つことを願っています。

于 2012-07-18T10:45:14.467 に答える
0

width と height を動的に設定する場合は、textview または Android の任意のビューのレイアウト パラメータを設定する必要があります。

于 2012-07-18T10:20:18.490 に答える