my error is
E/AndroidRuntime(11101): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.hellolinear/java.text.Normalizer$Form};
have you declared this activity in your `AndroidManifest.xml`?
but in my manifest code is:
<activity android:name=".Form"
android:label="@string/app_name">
<intent-filter/>
</activity>
can anyone help me?
Check whether the activity is in the root package. Otherwise mention the package path while declaring in manifest file.