我正在尝试在 Android 中设计一个像这样的屏幕:
我在单独的 PNG 文件中拥有所有按钮、背景和图像,但我无法完成!我不知道如何将两个按钮放在背景中,而且我也遇到了与边框的距离问题。这是我到目前为止所拥有的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/fundo_tela">
<ImageView
android:id="@+id/imgtopo"
android:src="@drawable/topo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/telaInicio"
android:layout_gravity="center"
android:gravity="center"
android:textColor="#fff"
android:textSize="20dp" />
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@drawable/fundoBotoes" >
<Button android:id="@+id/Camera"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/cameraBselector">
</Button>
<Button
android:id="@+id/Galeria"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/galleryBselector">
</Button>
</LinearLayout>
<Button
android:id="@+id/Pedidos"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/pedidosBselector"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
>
</Button>
</LinearLayout>