andreluizreis
7/13/2017 - 7:07 PM

Send Intent Action from Preferences.xml

Send Intent Action from Preferences.xml

<PreferenceScreen
    android:title="@string/buy_credits">
    <intent android:action="ACCOUNT_SETTINGS"/>
</PreferenceScreen>
<activity
    android:name=".frontend.account.AccountActivity"
    android:label="@string/account"
    android:screenOrientation="portrait"
    android:theme="@style/AppTheme">
    <intent-filter>
        <action android:name="ACCOUNT_SETTINGS"/>
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>