現在、アプリの 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 問題