我正在构建我的应用程序的UI。我无法理解是什么问题使Eclipse找不到我的资源的id。
layout.xml
如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:weightSum="100"
tools:context=".Homescreen" >
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/playlist" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="160dp"
android:layout_weight="50"
android:padding="15dp"
android:src="@drawable/homescreen" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_gravity="right"
android:text="Starttime" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_gravity="left"
android:text="EndTime" />
</RelativeLayout>
<SeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:paddingTop="3dp" />
<TextSwitcher
android:id="@+id/TSSongName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="28" >
</TextSwitcher>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="30" >
<ImageButton
android:id="@+id/IVRepeat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginRight="30dp"
**android:layout_toLeftOf="@id/IBPrevious"**
android:background="@drawable/media_repeat" />
<ImageButton
android:id="@+id/IBPlay"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_centerInParent="true"
android:background="@drawable/player_play" />
<ImageButton
android:id="@+id/IBPrevious"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginRight="20dp"
android:layout_toLeftOf="@id/IBPlay"
android:background="@drawable/previous" />
<ImageButton
android:id="@+id/IBNext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/IBPlay"
android:layout_centerInParent="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/IBPlay"
android:background="@drawable/next" />
<ImageButton
android:id="@+id/IVShuffle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginLeft="30dp"
android:layout_toRightOf="@id/IBNext"
android:background="@drawable/media_shuffle" />
</RelativeLayout>
</LinearLayout>
现在,如果我没有包含@id/Repeat
的布局位置,项目会正常执行。但是如果我把它包括在内BAAAMM !!它弹出一个错误说:
错误:找不到与给定名称匹配的资源('layout_toLeftOf',值为'@id / IBPrevious')AAPT问题
答案 0 :(得分:0)
尝试制作:
android:layout_toLeftOf="@+id/IBPrevious"
而不是:
android:layout_toLeftOf="@id/IBPrevious".