@@ -2,28 +2,27 @@
 
 <merge xmlns:android="http://schemas.android.com/apk/res/android">
 
-    <RelativeLayout
+    <LinearLayout
         android:layout_width="match_parent"
-        android:layout_height="wrap_content">
+        android:layout_height="wrap_content"
+        android:orientation="horizontal">
 
-        <TextView
-            android:id="@+id/sb__action"
-            style="@style/Snackbar.Text.Action"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:layout_alignParentRight="true"
-            android:gravity="center_vertical"/>
 
         <TextView
             android:id="@+id/sb__text"
             style="@style/Snackbar.Text"
-            android:layout_width="match_parent"
+            android:layout_width="wrap_content"
             android:layout_height="wrap_content"
-            android:ellipsize="end"
-            android:layout_toLeftOf="@id/sb__action"
-            />
+            android:layout_weight="1"
+            android:ellipsize="end" />
 
+        <TextView
+            android:id="@+id/sb__action"
+            style="@style/Snackbar.Text.Action"
+            android:layout_width="wrap_content"
+            android:layout_height="match_parent"
+            android:gravity="right" />
 
-    </RelativeLayout>
+    </LinearLayout>
 
 </merge>
\ No newline at end of file