From: Reimar Döffinger Date: Sun, 5 Nov 2017 15:46:14 +0000 (+0100) Subject: Remove some margins that seem a bit overkill. X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=commitdiff_plain;h=bc9afa81039eaa41cca52d7047df64f46458dc40 Remove some margins that seem a bit overkill. --- diff --git a/src/com/hughes/android/dictionary/DictionaryActivity.java b/src/com/hughes/android/dictionary/DictionaryActivity.java index 52a6991..7517441 100644 --- a/src/com/hughes/android/dictionary/DictionaryActivity.java +++ b/src/com/hughes/android/dictionary/DictionaryActivity.java @@ -1583,16 +1583,13 @@ public class DictionaryActivity extends ActionBarActivity { // Set the columns in the table. if (r > 0) { final TextView bullet = new TextView(tableRow.getContext()); - bullet.setText(" • "); + bullet.setText(" •"); tableRow.addView(bullet); } tableRow.addView(col1, layoutParams); - final TextView margin = new TextView(tableRow.getContext()); - margin.setText(" "); - tableRow.addView(margin); if (r > 0) { final TextView bullet = new TextView(tableRow.getContext()); - bullet.setText(" • "); + bullet.setText(" •"); tableRow.addView(bullet); } tableRow.addView(col2, layoutParams);