Trim name before showing it.
This commit is contained in:
parent
b1bb4eb8b3
commit
bee5e45093
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class FirstStartActivity extends AppCompatActivity with OnEditorActionListener w
|
|||
setContentView(R.layout.activity_first_start)
|
||||
setTitle(R.string.welcome)
|
||||
|
||||
username.setText(BluetoothAdapter.getDefaultAdapter.getName)
|
||||
username.setText(BluetoothAdapter.getDefaultAdapter.getName.trim)
|
||||
username.setOnEditorActionListener(this)
|
||||
done.setOnClickListener(this)
|
||||
|
||||
|
|
Reference in a new issue