我寫了下面的佈局代碼和按鈕,但它似乎沒有工作的任何一個指導我我在做什麼錯誤?
![<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/color_panel_background"
>
<ImageButton
android:layout_height="wrap_content"
android:id="@+id/currentLocation"
android:layout_weight="1"
android:layout_width="fill_parent"
android:src="@drawable/current_location_icon"
/>
<ImageButton
android:layout_height="wrap_content"
android:id="@+id/searchCity"
android:layout_weight="1"
android:layout_width="fill_parent"
android:src="@drawable/search_icon"
/>
<ImageButton
android:layout_height="wrap_content"
android:id="@+id/home"
android:layout_weight="1"
android:layout_width="fill_parent"
android:src="@drawable/home_icon"
/>
</LinearLayout>
</RelativeLayout>][2]