我在framelayout中有两个图像视图。我如何使用第二个imageview,即+ id / CompositeImageViewTextj,选择width作为fillparent,同时使用第一个imageview'id / CompositeImageViewj'。
<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" />
答案 0 :(得分:1)
我猜你想同时在同一个地方拍摄这两张照片。
<a ng-click="showZoom(page.page);">
<img ng-src="{{page.imageUrl}}" >
</a>
答案 1 :(得分:0)
您想使用LinearLayout吗?你正在尝试使用android:orientation =“vertical” - 这当然不存在于FrameLayout中。