Skip to content

Commit 33386c0

Browse files
committed
PR feedback
1 parent 4fecff5 commit 33386c0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

android-src/KV4PHT/app/src/main/java/com/vagell/kv4pht/ui/APRSAdapter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,17 +305,17 @@ public void setDecoderSource(int decoderSource) {
305305
}
306306
if (decoderSource == (RadioAudioService.DECODER_SOURCE_ANDROID | RadioAudioService.DECODER_SOURCE_ESP32)) {
307307
textViewDecoderSource.setVisibility(View.VISIBLE);
308-
textViewDecoderSource.setText("[A+E]");
309-
textViewDecoderSource.setBackgroundResource(R.drawable.decoder_source_both);
308+
textViewDecoderSource.setText(" S+F ");
309+
textViewDecoderSource.setBackgroundResource(R.drawable.decoder_source_android);
310310
textViewDecoderSource.setTextColor(0xFFFFFFFF);
311311
} else if (decoderSource == RadioAudioService.DECODER_SOURCE_ANDROID) {
312312
textViewDecoderSource.setVisibility(View.VISIBLE);
313-
textViewDecoderSource.setText("[A]");
314-
textViewDecoderSource.setBackgroundResource(R.drawable.decoder_source_android);
313+
textViewDecoderSource.setText(" S ");
314+
textViewDecoderSource.setBackgroundResource(R.drawable.decoder_source_both);
315315
textViewDecoderSource.setTextColor(0xFFFFFFFF);
316316
} else if (decoderSource == RadioAudioService.DECODER_SOURCE_ESP32) {
317317
textViewDecoderSource.setVisibility(View.VISIBLE);
318-
textViewDecoderSource.setText("[E]");
318+
textViewDecoderSource.setText(" F ");
319319
textViewDecoderSource.setBackgroundResource(R.drawable.decoder_source_esp32);
320320
textViewDecoderSource.setTextColor(0xFFFFFFFF);
321321
} else {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
3-
<corners android:radius="3dp" />
3+
<corners android:radius="6dp" />
44
<solid android:color="#2D6CDF" />
55
</shape>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
3-
<corners android:radius="3dp" />
3+
<corners android:radius="6dp" />
44
<solid android:color="#B56A00" />
55
</shape>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
3-
<corners android:radius="3dp" />
3+
<corners android:radius="6dp" />
44
<solid android:color="#1D8F57" />
55
</shape>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
3-
<corners android:radius="3dp" />
3+
<corners android:radius="6dp" />
44
<solid android:color="#666666" />
55
</shape>

0 commit comments

Comments
 (0)