私は最初のボタンを表示し、画像のみを使う必要があります。しかし、私のアプリを起動することはできません。最初の "ImageView"、2番目の "RelativeLayout" - 動作しますが、最初の "RelativeLayout"、2番目の "ImageView"はありません。
これは作品です:
<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>
..but私は "RelativeLayout" の下に "画像" を配置するとアプリが動作しません。
は本当になぜ、
あなたが私に言うことができる...それをどうするのか分からないのですか?
提案がありますか?
にこのコードを試してみてください? – ByteMe
なぜ機能しないのですか?ちょうど "それは動作しません"と言っても、あなたが得るかもしれないどんな誤りにも私たちは指摘しません。 –
あなたはあなたのイメージビューを一番下または一番上にしたいです... –