写真よりも最初に表示ボタンを使用する必要があります。しかし、私のアプリは起動できません。
これは動作します:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imageview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button
android:id="@+id/make_photo_again"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/make_photo_again_label"
android:layout_alignParentLeft="true"
/>
<Button
android:id="@+id/edit_photo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/edit_photo_label"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
</LinearLayout>
..しかし、「RelativeLayout」の下に「Image」を配置すると、アプリが機能しません。
本当にどうしたらいいのかわからない。
教えてくれませんか、なぜですか?
助言がありますか?