Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6fe26296 authored by Chirayu Desai's avatar Chirayu Desai
Browse files

cleanup

Change-Id: Ie1265312524aad8f8cc503ccbf3c054e4997870c
parent 66dc57ac
Loading
Loading
Loading
Loading

Android.mk

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

AndroidManifest.xml

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

_index.html

deleted100755 → 0
+0 −15
Original line number Diff line number Diff line
<p>FmRadioReceiver is a sample application that demonstrates the use of the
<a href="../../../reference/android/fm/FmReceiver.html">android.fm.FmReceiver</a>
class to implement a FM Radio receiver in an application. The application allows the
user to tune to any local radio stations, switch between them, scan for new stations and
mute the radio. It also allows the user to change the radio band to their suit their location.
The use of listeners is shown to display the tuned station name if RDS data is present.</p>

<p>The FmRadioReceiver.java file in FmRadioReceiver also illustrates the interaction with
the MediaPlayer. </p>

<p><strong>See also:</strong><br/>
<a href="../../../reference/android/fm/FmBand.html">FmBand</a></p>
<a href="../../../reference/android/fm/FmTransmitter.html">FmTransmitter</a></p>

<img alt="" src="../images/FmRadioReceiver.png"  />
+4 −5
Original line number Diff line number Diff line
@@ -16,8 +16,7 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <string name="app_name">FM Radio</string>
    <string name="band_select">Select Band</string>
    <string name="band_select_title">Please select your FM region:\n(this screen will only be shown once, but you
    can change this value later from the preferences menu.)</string>
    <string name="band_select_title">Please select your FM region:\n(You can change this value later from the settings.)</string>
    <string name="proceed">Proceed</string>
    <string name="band_us">U.S.</string>
    <string name="band_eu">Europe</string>
@@ -37,12 +36,12 @@
    <string name="unable_to_start_radio">Unable to start the radio receiver.</string>
    <string name="unable_to_mediaplayer">Unable to start Android\'s MediaPlayer</string>
    <string name="mediaplayer_busy">MediaPlayer busy. Please wait and try again.</string>
    <string name="earplugs_not_connected">Earplugs must be plugged in to use this application!</string>
    <string name="earplugs_not_connected">You need to connect a wired headset to use this app.</string>

    <!-- Preferences -->
    <string name="preferences">Preferences</string>
    <string name="preferences">Settings</string>
    <string name="pref_notification_bar_title">Use Notification Control</string>
    <string name="pref_print_debug_info_title">Output verbose logcat</string>
    <string name="pref_print_debug_info_title">Verbose loggin</string>

    <!-- About -->
    <string name="about">About</string>
+1 −3
Original line number Diff line number Diff line
@@ -7,13 +7,11 @@
                android:title="@string/pref_notification_bar_title"
                android:defaultValue="true"/>


        <CheckBoxPreference
                android:key="print_debug_info"
                android:title="@string/pref_print_debug_info_title"
                android:defaultValue="false"/>


        <PreferenceScreen
                android:title="@string/about">
            <intent android:action="android.intent.action.FM_ABOUT"/>
Loading