我需要使用显示第一个按钮,而不是图片。但是我的应用程序无法启动。
这是作品:
<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”下,该应用程序将无法工作。
真的不知道该怎么办。。
你能告诉我,为什么?
有什么建议么?