進出口試圖涉及小窗口,我如波紋管寫的代碼:錯誤的RelativeLayout涉及2插件時
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="90dp"
android:background="@drawable/ad1"
android:orientation="horizontal" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ad1"
android:orientation="horizontal"
android:layout_toStartOf="@id/bt_menu" > // here there is error !!!!
<EditText
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:hint="Menu "
android:inputType="textVisiblePassword"/>
</RelativeLayout>
<ImageButton
android:id="@+id/bt_menu"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@android:color/transparent"
android:scaleType="fitCenter"
android:src="@drawable/menu5"
android:onClick="menu_onclick"/>
</RelativeLayout>
我在這線上的錯誤:
機器人:layout_toStartOf =「@ ID/bt_menu」
的錯誤是:沒有資源發現在給定的名字相匹配(在 'layout_toStartOf',值爲 '@ ID/bt_menu')
任何人都可以幫助我!
預先感謝您.. Fadel。
感謝y個第一定義ID ou @codeMagic :) :)它幫助了很多:)(y) – BinaryMan
歡迎您 – codeMagic
@codeMagic它不完全是一個eclipse bug它是android解析XML的方式,因爲Android studio也存在同樣的問題 – reubenjohn