@@ -94,6 +94,16 @@ public Snackbar text(CharSequence text) {
         return this;
     }
 
+    /**
+     * Sets the text to be displayed in this {@link Snackbar}
+     *
+     * @param resId
+     * @return
+     */
+    public Snackbar text(int resId) {
+        return text(getContext().getText(resId));
+    }
+
     /**
      * Sets the background color of this {@link Snackbar}
      *
@@ -128,6 +138,17 @@ public Snackbar actionLabel(CharSequence actionButtonLabel) {
         return this;
     }
 
+    /**
+     * Sets the action label to be displayed, if any. Note that if this is not set, the action
+     * button will not be displayed
+     *
+     * @param resId
+     * @return
+     */
+    public Snackbar actionLabel(int resId) {
+        return actionLabel(getContext().getString(resId));
+    }
+
     /**
      * Sets the color of the action button label. Note that you must set a button label with
      * {@link Snackbar#actionLabel(CharSequence)} for this button to be displayed