Change Text

The text asset consists of the application name of another text component inside the app, to change it :

  1. You can see on the res/values/strings.xml

  2. Change value name in each strings tag according your needs.

strings.xml
<!--application name-->
<string name="app_name">Your Single Radio</string>

<!--navigation drawer menu name-->
<string name="drawer_recent">Home</string>
<string name="drawer_social">Social</string>
<string name="drawer_other">Other</string>
<string name="drawer_rate_us">Rate us</string>
<string name="drawer_more_apps">More apps</string>
<string name="drawer_share">Share to friends</string>
<string name="drawer_privacy_policy">Privacy policy</string>
<string name="drawer_permission">Additional permission</string>
<string name="drawer_about">About</string>

<!--permission agreement-->
<string name="permission_title">Thanks for installing Your Radio App</string>
<string name="btn_allow_permissions">Allow permissions now</string>
<string name="btn_later">I will do it later</string>
<string name="permission_message">
        <![CDATA[
        <p>Please give us the below permissions :</p>
        <p><strong>PHONE PERMISSION</strong> : it will used to stop playing radio when there is an incoming phone call.</p>
        <p>Do not worry, we guarantee your data is 100% safe and we do not collect any data that you have, the permission you give is only for the purpose of this app running properly.</p>
        ]]>
</string>

Last updated