Change it
Intent counter = new Intent("com.example.test.Counter");
startActivity(counter);
This is called an implicit intent and it needs an intent filter.
to
Intent counter = new Intent(MainActivity.this,Counter.class);
startActivity(counter);
This is called an explicit intent, and there is no need for an intent filter.
You must use explicit intentions, you have
<activity
android:name="com.example.test.Counter"
android:label="@string/title_activity_counter" >
</activity>
Quotation of documents
( ). , , . , .
. , - , .
Edit:
start() run