我有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 的位置...