string improvement
This commit is contained in:
parent
1c9745651f
commit
6ef468db10
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||||
holder.partOf.setText(article.getGeoDescription());
|
holder.partOf.setText(article.getGeoDescription());
|
||||||
holder.leftButton.setText(app.getString(R.string.shared_string_read));
|
holder.leftButton.setText(app.getString(R.string.shared_string_read));
|
||||||
holder.leftButton.setCompoundDrawablesWithIntrinsicBounds(readIcon, null, null, null);
|
holder.leftButton.setCompoundDrawablesWithIntrinsicBounds(readIcon, null, null, null);
|
||||||
holder.rightButton.setText(app.getString(R.string.shared_string_delete));
|
holder.rightButton.setText(app.getString(R.string.shared_string_remove));
|
||||||
holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, deleteIcon, null);
|
holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, deleteIcon, null);
|
||||||
holder.divider.setVisibility(lastItem ? View.GONE : View.VISIBLE);
|
holder.divider.setVisibility(lastItem ? View.GONE : View.VISIBLE);
|
||||||
holder.shadow.setVisibility(lastItem ? View.VISIBLE : View.GONE);
|
holder.shadow.setVisibility(lastItem ? View.VISIBLE : View.GONE);
|
||||||
|
|
Loading…
Reference in a new issue