Androidプラットフォーム用の柔軟なユーザーインターフェイスを作成したいと思います。
基本的に、私のレイアウトは、先頭に「プラス」記号が付いた画像ボタンで構成されます。ユーザーがクリックしたとき。別のレイアウトが呼び出され、ユーザーは作成されるはずの画像ボタンに名前を付けるように求められます。ユーザーが[確認]をクリックすると、最初のレイアウトに戻り、新しく追加された画像ボタンが「」の位置を置き換えます。プラス記号の画像ボタンとプラス記号の画像ボタンは右にシフトします。
私は最初にレイアウトを作成する方法を知っていますが、上記のように機能するようにレイアウトをプログラムする方法がわかりません。
さて、メインのレイアウトファイルを次のように設定しました。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000" >
<ImageButton
android:id="@+id/addRoom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="25dp"
android:layout_marginTop="38dp"
android:background="#80000000"
android:src="@drawable/plus" />
<TextView
android:id="@+id/textView1"
android:layout_width="@+id/addRoom"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/addRoom"
android:layout_alignRight="@+id/addRoom"
android:layout_below="@+id/addRoom"
android:text="@string/add_room"
android:gravity="center"
android:textColor="#FFFFFF" />
</RelativeLayout>
</ScrollView>
画像ボタンとテキストビューの両方に位置合わせの指示があるときに画像ボタンとテキストビューをシフトするフラグメントを含めると、問題が発生しますか?