FM: Setting the height of the button as match_parent always

- Hight of the preset button always set to match_parent

Change-Id: Iba414e27b214ee8f30c12d4b9f8236c9eb9deb29
CRs-Fixed: 665481
diff --git a/fmapp2/src/com/caf/fmradio/FMRadio.java b/fmapp2/src/com/caf/fmradio/FMRadio.java
index d8cdab3..bd899e4 100644
--- a/fmapp2/src/com/caf/fmradio/FMRadio.java
+++ b/fmapp2/src/com/caf/fmradio/FMRadio.java
@@ -2042,6 +2042,7 @@
        */
       for (int buttonIndex = 0; (buttonIndex < MAX_PRESETS_PER_PAGE); buttonIndex++) {
          if (mPresetButtons[buttonIndex] != null) {
+            mPresetButtons[buttonIndex].setHeight(-1);
             int stationIdex = (mPresetPageNumber * MAX_PRESETS_PER_PAGE)
                                 + buttonIndex;
             PresetStation station = FmSharedPreferences.getStationInList(stationIdex);
@@ -2053,7 +2054,6 @@
 	       mPresetButtons[buttonIndex].setEllipsize(TextUtils.TruncateAt.END);
                mPresetButtons[buttonIndex].setText(display);
                mPresetButtons[buttonIndex].setTag(station);
-               mPresetButtons[buttonIndex].setHeight(-1);
                addedStations++;
             }else {
                mPresetButtons[buttonIndex].setText(R.string.add_station);