-1

我现在正在构建我的应用程序的 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 问题

4

1 回答 1

0

尝试制作它:

android:layout_toLeftOf="@+id/IBPrevious"

代替:

android:layout_toLeftOf="@id/IBPrevious".
于 2013-09-21T02:59:08.687 回答