In the xml file for the Android layout, there is a prefix "android:" with each attribute.
is there any solution to remove them.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_height="fill_parent"
android:layout_width="wrap_content">
<Button android:id="@+id/button1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/test_button">
</Button>
</LinearLayout>
source
share