mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-03 09:26:51 +00:00
Extracting format string properly into xml strings.
Change-Id: I4766ee48bef6a08c6a9809f8df29d4d2343014c4
This commit is contained in:
@@ -444,7 +444,7 @@ public class CustomizePagedView extends PagedView
|
||||
TextView name = (TextView) l.findViewById(R.id.name);
|
||||
name.setText(info.label);
|
||||
TextView dims = (TextView) l.findViewById(R.id.dims);
|
||||
dims.setText("" + hSpan + " x " + vSpan);
|
||||
dims.setText(mContext.getString(R.string.widget_dims_format, hSpan, vSpan));
|
||||
|
||||
layout.addView(l);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user