ここでは、framelayoutに2つの画像ビューがあります。 2番目の画像ビュー、つまり+ id/CompositeImageViewTextjをfillparentとして幅を選択して使用すると同時に、最初のimageview 'id/CompositeImageViewj'を同時に使用できます。framelayoutで2つの画像ビューを使用する
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/framel">
<Button
android:id="@+id/ChoosePictureButton1j"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@drawable/color"
android:text="CHOOSE PICTURE" >
</Button>
<ImageView android:layout_width="fill_parent"android:layout_height="wrap_content" android:id="@+id/CompositeImageViewj" android:paddingTop="100dip"></ImageView>
<ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/CompositeImageViewTextj" android:paddingTop="100dip"></ImageView>
<EditText
android:id="@+id/edtextj"
android:layout_width="172dp"
android:layout_height="62dp"
android:layout_gravity="bottom"
android:hint="Enter Caption" >
<Button
android:id="@+id/okj"
android:layout_width="63dp"
android:layout_height="56dp"
android:layout_gravity="bottom"
android:layout_marginBottom=" 5dip"
android:layout_marginLeft=" 175dip"
android:background="@drawable/tick" />
<Button
android:id="@+id/savej"
android:layout_width="match_parent"
android:layout_height="62dp"
android:layout_gravity="bottom"
android:layout_marginLeft=" 235dip"
android:text="SAVE" />
あなたの質問は混乱しています。彼らは両方とも同時に使用されています。単純に1つは見えません...私たちは明確化が必要です。なんでしょう?何を手に入れていますか?これにより、より良い方法でお手伝いすることができます。 –