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>

我从Set position of an EditText and TextView in a RelativeLayout 以编程方式获得了知识来改变位置,但无法帮助我

任何机构都可以帮助我如何动态更改 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 回答