Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
You guys are probably going to sweep the floor with me but I took the plunge and ordered a Moto One Action 128GB Smartphone.

Pity, because I really liked it. It is still being developed, and it's available in Apple's app store:
I'm sure someone else was reporting the same thing happening with a Samsung phone and connecting to a vehicle BT system, with the media playing automatically.
Can't remember if there was a definite solution or not. And it's not something I've ever encountered myself. So I'm pretty sure it's not a general Android issue, and very well could be a Samsung specific "feature".
I use Foobar2000 for my listening, and that does have a specific setting to start playing when headphones are plugged in, which is OFF by default.
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioGroup
android:id="@+id/estate_type_radio_group_1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:checkedButton="@+id/filter_estate_type_a"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/sleeping_room_range_seek_bar">
<RadioButton
android:id="@+id/filter_estate_type_h"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/house_with_state_48"
android:drawableLeft="@drawable/house_with_state_48"
android:text="@string/house" />
<RadioButton
android:id="@+id/filter_estate_type_a"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/apartment_with_state_48"
android:drawableLeft="@drawable/apartment_with_state_48"
android:text="@string/apartment" />
</RadioGroup>
<RadioGroup
android:id="@+id/estate_type_radio_group_2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="@+id/estate_type_radio_group_1"
app:layout_constraintStart_toStartOf="@+id/estate_type_radio_group_1"
app:layout_constraintTop_toBottomOf="@+id/estate_type_radio_group_1"
>
<RadioButton
android:id="@+id/filter_estate_type_s"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/studio_with_state_48"
android:drawableLeft="@drawable/studio_with_state_48"
android:text="@string/studio" />
<RadioButton
android:id="@+id/filter_estate_type_r"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/sleeping_room_with_state_48"
android:drawableLeft="@drawable/sleeping_room_with_state_48"
android:text="@string/sleeping_room" />
</RadioGroup>
<RadioGroup
android:id="@+id/estate_type_radio_group_3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="@+id/estate_type_radio_group_2"
app:layout_constraintStart_toStartOf="@+id/estate_type_radio_group_2"
app:layout_constraintTop_toBottomOf="@+id/estate_type_radio_group_2">
<RadioButton
android:id="@+id/filter_estate_type_local_c"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/local_commel_with_state_48"
android:drawableLeft="@drawable/local_commel_with_state_48"
android:text="@string/local_commercial" />
<RadioButton
android:id="@+id/filter_estate_type_apps"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/appartement_with_state_48"
android:drawableLeft="@drawable/appartement_with_state_48"
android:text="Appartements meubles"/>
</RadioGroup>
<RadioGroup
android:id="@+id/estate_type_radio_group_4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/estate_type_radio_group_3"
app:layout_constraintStart_toStartOf="@+id/estate_type_radio_group_3"
app:layout_constraintTop_toBottomOf="@+id/estate_type_radio_group_3"
>
<RadioButton
android:id="@+id/filter_estate_ty"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:drawableStart="@drawable/ter_with_state_48"
android:drawableLeft="@drawable/ter_with_state_48"
android:text="Terrain" />
<RadioButton
android:id="@+id/filter_estate_type_roo"
style="@style/EstateTypeRadioButtonStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:layout_weight="1"
android:visibility="invisible"
android:drawableStart="@drawable/sleeng_rm_with_state_48"
android:drawableLeft="@drawable/sleeng_rm_with_state_48"
android:text="@string/sleeping_room" />
</RadioGroup>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
isChecking =true;
mEstateTypeGroup1.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
if (checkedId != -1 && isChecking) {
isChecking = false;
mEstateTypeGroup2.clearCheck();
mEstateTypeGroup3.clearCheck();
mEstateTypeGroup4.clearCheck();
mEstateTypeCheckedId = checkedId;
}
isChecking = true;
}
});
mEstateTypeGroup2.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
if (checkedId != -1 && isChecking) {
isChecking = false;
mEstateTypeGroup1.clearCheck();
mEstateTypeGroup3.clearCheck();
mEstateTypeGroup4.clearCheck();
mEstateTypeCheckedId = checkedId;
}
isChecking = true;
}
});
mEstateTypeGroup3.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
if (checkedId != -1 && isChecking) {
isChecking = false;
mEstateTypeGroup1.clearCheck();
mEstateTypeGroup2.clearCheck();
mEstateTypeGroup4.clearCheck();
mEstateTypeCheckedId = checkedId;
}
isChecking = true;
}
});
mEstateTypeGroup4.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
if (checkedId != -1 && isChecking) {
isChecking = false;
mEstateTypeGroup1.clearCheck();
mEstateTypeGroup2.clearCheck();
mEstateTypeGroup3.clearCheck();
mEstateTypeCheckedId = checkedId;
}
isChecking = true;
}
});
IVE BEEN ULTRASIZED.It sounded like he answered several different ways! It's always a bit more helpful if you are also willing to put in some leg work for an answer!
Glad we could help though!
I have Android 7.1 auto stereo. My radio worked prior to the blue tooth pairing but not after. #5 refers to the area of “manual scanner”. The system was in the Jeep when I bought it used. I don’t know if the blue tooth connection is what caused it/it is the only change that I’m aware of. How do I get the radio /stereo working again? no I don’t have the AP on my phoneso you have an android auto head unit? do you have the android auto app on your phone? and just to be clear after pairing your phone to the car stereo head unit, you are now having issues with radio sound? i'm not sure what you mean by the scanner "labeled #5 on instructions" no longer works. so the number 5 button does not work? or the scanner does not work? what car stereo do you have? is it a factory unit from Jeep?
Is there or will there be a Root for the phone listed below
Galaxy J3 Achieve 2018
Oreo 8.0
Software:J337PVPS2ASA1
Carrier Boost Mobile
Sorry you feel that way; just how im built.matter of fact my ultra is fine. im done.Hey, how about you take a step back. We are all just here helping out our fellow Android users out of the kindness of hearts. No need to be so curt, that's not how you get help.
If you are curious about the Ultra Auto-focus issue, you should shoot over to the Ultra section and see if recent updates fixed the camera issue.