3

RelativeLayout があり、RelativeLayout に textview があります。その値に基づいて、ALIGN_PARENT_LEFT、ALIGN_PARENT_TOP などのサーバーから位置を取得しています。textview の位置を変更したい...

私のxmlファイルは....

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:id="@+id/relativelayout"
android:orientation="vertical" >


<TextView
    android:id="@+id/share_text"
    android:layout_width="100dp"
    android:layout_height="60dp"
    android:gravity="center"
    android:background="@drawable/share_text" />

</RelativeLayout>

プログラムでRelativeLayoutのEditTextとTextViewの位置を設定して位置を変更することから知識を得ましたが、助けにはなりませんでした

テキストビューの位置を動的に変更する方法を教えてください...

4

2 に答える 2

5

このようにしてみてください

RelativeLayout.LayoutParams params1 = new 
   RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 

params1.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
yourTextview.setLayoutParams(params1);
于 2013-03-23T11:42:34.960 に答える
2

どうですか

((RelativeLayout.LayoutParams)yourView.getLayoutParams()).alignParentTop =
     serverResponse.equals("ALIGN_PARENT_TOP");

?

もちろん、サーバーの応答などを解析する必要があります...

于 2013-03-23T11:40:02.500 に答える