i have got warning like in topic, i already googled that however adding description not fix my problem, R.java is not generating, i was trying to clean and rebuild and nothing... whats wrong is with my .xml file
<?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"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp" >
<ListView
android:id="@+id/listViewPlayer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/buttonPrev"
android:layout_alignParentTop="true"
android:layout_alignLeft="@+id/seekBar1"
android:layout_centerHorizontal="true" />
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="16dp" />
<ImageButton
android:id="@+id/buttonPrev"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/seekBar1"
android:layout_alignLeft="@+id/seekBar1"
android:src="@drawable/rewind" />
<ImageButton
android:id="@+id/buttonPlay"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/seekBar1"
android:layout_toRightOf="@+id/buttonPrev"
android:src="@drawable/play" />
<ImageButton
android:id="@+id/buttonForw"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/seekBar1"
android:layout_toRightOf="@+id/buttonPlay"
android:src="@drawable/fast_forward" />
<ImageButton
android:id="@+id/buttonShuffle"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_above="@+id/seekBarVolume"
android:layout_alignLeft="@+id/seekBarVolume"
android:src="@drawable/shuffle" />
<ImageButton
android:id="@+id/buttonRepeat"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_above="@+id/seekBarVolume"
android:layout_alignRight="@+id/seekBarVolume"
android:src="@drawable/repeat" />
<SeekBar
android:id="@+id/seekBarVolume"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/seekBar1"
android:layout_alignParentBottom="true"
android:layout_marginBottom="16dp" />
</RelativeLayout>