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の位置を設定して位置を変更することから知識を得ましたが、助けにはなりませんでした
テキストビューの位置を動的に変更する方法を教えてください...