I want to use a resource id edittext_container
which has been already defined in framework,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@*android:id/edittext_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dip"
android:orientation="vertical">
<TextView android:id="@+android:id/message"
style="?android:attr/textAppearanceSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?android:attr/textColorSecondary" />
</LinearLayout>
but the Eclipse build error:
Illegal resource reference: @*android resources are private and not always present
How to resolve?
This id is in http://androidxref.com/4.2.2_r1/xref/frameworks/base/core/res/res/layout/preference_dialog_edittext.xml