As the title says, I want to stop the "ellipsis" from occurring and for it to show the whole string associated to that button. I can´t figure out why it is not displaying the string, but instead it is trimming it.
I know that "singleLine" forces a "trimming", but I want it in a single line, and not to wrap. I need the button to show it´s small string in one line, that´s all.
I have also tried using minWidth and maxWidth to no avail.
The problem occurs when viewing the layout in an Android 2.3.6 phone (Samsung Galaxy Mini).
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     tools:context=".MainActivity"
    android:background="@drawable/background2" >
<ImageButton
    android:id="@+id/quote"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="24dp"
    android:contentDescription="@string/quote"
    android:background="#00000000"
    android:padding="30dp" />
  <ScrollView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="90dp" >
      <RelativeLayout
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
           >
             <Button
                android:id="@+id/makeAMemory"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="80dp"
                android:layout_marginRight="70dp"
                android:text="@string/button_addMemory"
                android:singleLine="true"
                android:textColor="#E4F5ED"
                android:background="@drawable/button_shape_shadow" 
                android:padding="10dp"/>
             <Button
                android:id="@+id/fixMemory"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/makeAMemory"
                android:gravity="left"
                android:layout_marginTop="12dp"
                android:text="@string/button_fixMemory"
                android:textColor="#E4F5ED"
                android:background="@drawable/button_shape_shadow" 
                android:padding="10dp"
                android:onClick="startListViewMemoryActivity"/>
              <Button
                android:id="@+id/getMemory"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/fixMemory"
                android:gravity="left"
                android:layout_marginTop="12dp"
                android:text="@string/button_getMemory"
                android:textColor="#E4F5ED"
                android:background="@drawable/button_shape_shadow"  
                android:padding="10dp"/>
      </RelativeLayout>
  </ScrollView>
</RelativeLayout>
The string is "Make memory". It´s not long at all! Any help is much appreciated.
EDITED
 
    