mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-30 01:21:11 +01:00
Fixed text spacing
This commit is contained in:
@@ -55,6 +55,7 @@ import java.util.List;
|
||||
public class FragmentSetup extends FragmentBase {
|
||||
private ViewGroup view;
|
||||
|
||||
private TextView tvWelcome;
|
||||
private ImageButton ibWelcome;
|
||||
|
||||
private Button btnHelp;
|
||||
@@ -102,6 +103,7 @@ public class FragmentSetup extends FragmentBase {
|
||||
view = (ViewGroup) inflater.inflate(R.layout.fragment_setup, container, false);
|
||||
|
||||
// Get controls
|
||||
tvWelcome = view.findViewById(R.id.tvWelcome);
|
||||
ibWelcome = view.findViewById(R.id.ibWelcome);
|
||||
|
||||
btnHelp = view.findViewById(R.id.btnHelp);
|
||||
@@ -134,6 +136,9 @@ public class FragmentSetup extends FragmentBase {
|
||||
|
||||
// Wire controls
|
||||
|
||||
tvWelcome.setText(getString(R.string.title_setup_welcome)
|
||||
.replaceAll("^\\s+", "").replaceAll("\\s+", " "));
|
||||
|
||||
ibWelcome.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
|
||||
Reference in New Issue
Block a user