I tried a simple Hello World application with the following xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="text1"
/>
<TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="text2"
/>
</LinearLayout>
Both my textviews have the same id. It compiles fine, runs fine, renders both the TextViews, and when i do a findViewByid() the first one gets found and all my function calls like setText are applied to it. Ideally, the AAPT should catch this but apparently it doesn't. It wont break something terribly unless the programmer relies on the id's. So its kind of like saying: if you are dumb enough to write such a code then you deserve to crash.
The AAPT won't care too much about it. For it, this is like a simple extension of Views with no explicit ids provided by the programmer.