我在下面有一个XML。在这里,我想在屏幕顶部显示一个图标,在底部显示两个按钮。虽然我已经为按钮和图像图标完成了所有xml。但它只显示图标而不是按钮。请帮我编辑我的代码。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
>
<ImageView
android:id="@+id/ImageViewPic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/icon_final"
android:scaleType="fitXY"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="300dp"
android:layout_marginBottom="10dp"
/>
<Button
android:id="@+id/Button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Candidate"
android:textSize="25dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="430dp"
android:layout_marginBottom="2dp"
android:background="#AA348C90"
/>
<Button
android:id="@+id/Button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Voter"
android:textSize="25dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:background="#AA348C90"
>
</Button>
</LinearLayout>
答案 0 :(得分:0)
将xml更改为
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
>
<ImageView
android:id="@+id/ImageViewPic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/icon_final"
android:scaleType="fitXY"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:layout_marginBottom="10dp"
/>
<Button
android:layout_below="@+id/ImageViewPic"
android:id="@+id/Button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Candidate"
android:textSize="25dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="2dp"
android:background="#AA348C90"
/>
<Button
android:layout_below="@+id/Button1"
android:id="@+id/Button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Voter"
android:textSize="25dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="20dp"
android:background="#AA348C90">
</Button></LinearLayout>