So I just finished creating a new UI in DroidDraw (relativelayout throughout), and I've imported it into my main.xml file. The problem is, whenever I run "check for xml errors" the output return states "cvc-elt.1: Cannot find the declaration of element 'RelativeLayout'. [8]" It's really bothersome, and I think it's what's causing my app to force close on run (there are no errors in the actual code itself). I'm fairly new to the whole android dev scene, so it's entirely likely that this is supposed to happen and I'm just being stupid. In any case, here is the block of text in which the error is returned:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/widget31"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
</RelativeLayout>
Any help would be much obliged.
/
or end tag</RelativeLayout>
. Based on the error I'm thinking that's not the problem, but you should fix that in your question so that we can start looking for the real issue.