I have this code in manifest
<activity
    android:name=".MyActivity"
    android:label="@string/app_name"
    android:screenOrientation="portrait"
    android:theme="@style/AppTheme.NoActionBar">
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
    </intent-filter>
</activity>
How can i add click listener for TextView with "@string/app_name"? This is my label title.
 
     
    