Loading app/src/main/java/net/fabiszewski/ulogger/SelfCheckFragment.java +14 −3 Original line number Diff line number Diff line Loading @@ -53,9 +53,13 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm private static final String TAG = SelfCheckFragment.class.getSimpleName(); private SwipeRefreshLayout swipe; private SwitchCompat preciseLocationSwitch; private TextView permissionsLabel; private TextView automatedUsageLabel; private View approximateLocationLayout; private TextView approximateLocationLabel; private SwitchCompat approximateLocationSwitch; private View preciseLocationLayout; private SwitchCompat preciseLocationSwitch; private TextView preciseLocationLabel; private View backgroundLocationLayout; private TextView backgroundLocationLabel; Loading Loading @@ -89,8 +93,12 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm View layout = inflater.inflate(R.layout.fragment_self_check, container, false); swipe = (SwipeRefreshLayout) layout; swipe.setOnRefreshListener(this::selfCheck); permissionsLabel = layout.findViewById(R.id.permissionsLabel); automatedUsageLabel = layout.findViewById(R.id.automatedUsageLabel); approximateLocationLayout = layout.findViewById(R.id.permissionApproximateLocation); approximateLocationSwitch = layout.findViewById(R.id.permissionApproximateLocationResult); approximateLocationLabel = layout.findViewById(R.id.permissionApproximateLocationLabel); preciseLocationLayout = layout.findViewById(R.id.permissionPreciseLocation); preciseLocationSwitch = layout.findViewById(R.id.permissionPreciseLocationResult); preciseLocationLabel = layout.findViewById(R.id.permissionPreciseLocationLabel); backgroundLocationLayout = layout.findViewById(R.id.permissionBackgroundLocationSelfCheck); Loading Loading @@ -242,8 +250,11 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm @RequiresApi(api = Build.VERSION_CODES.M) private void checkPermissions() { setItem(null, approximateLocationLabel, approximateLocationSwitch, ACCESS_COARSE_LOCATION); setItem(null, preciseLocationLabel, preciseLocationSwitch, ACCESS_FINE_LOCATION); permissionsLabel.setVisibility(View.VISIBLE); automatedUsageLabel.setVisibility(View.VISIBLE); setItem(approximateLocationLayout, approximateLocationLabel, approximateLocationSwitch, ACCESS_COARSE_LOCATION); setItem(preciseLocationLayout, preciseLocationLabel, preciseLocationSwitch, ACCESS_FINE_LOCATION); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { setItem(backgroundLocationLayout, backgroundLocationLabel, backgroundLocationSwitch, ACCESS_BACKGROUND_LOCATION); Loading app/src/main/res/layout/fragment_self_check.xml +19 −11 Original line number Diff line number Diff line Loading @@ -35,6 +35,7 @@ android:textAlignment="viewStart" android:textSize="25sp" /> <TextView android:id="@+id/permissionsLabel" android:layout_height="wrap_content" android:layout_marginBottom="15dp" android:layout_marginTop="10dp" Loading @@ -42,13 +43,16 @@ android:text="@string/self_check_permissions_title" android:textAlignment="textStart" android:textColor="@color/colorBlue" android:textSize="13sp" /> android:textSize="13sp" android:visibility="gone" /> <LinearLayout android:id="@+id/permissionApproximateLocation" android:gravity="top" android:layout_height="wrap_content" android:layout_width="match_parent" android:orientation="horizontal"> android:orientation="horizontal" android:visibility="gone"> <LinearLayout android:layout_height="wrap_content" Loading @@ -74,8 +78,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/permissionApproximateLocationResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading @@ -86,11 +90,13 @@ </LinearLayout> <LinearLayout android:id="@+id/permissionPreciseLocation" android:gravity="top" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:layout_width="match_parent" android:orientation="horizontal"> android:orientation="horizontal" android:visibility="gone"> <LinearLayout android:layout_height="wrap_content" Loading @@ -116,8 +122,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/permissionPreciseLocationResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -283,8 +289,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/batteryUnrestrictedUsageResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:paddingStart="10dp" Loading @@ -294,6 +300,7 @@ </LinearLayout> <TextView android:id="@+id/automatedUsageLabel" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" Loading @@ -301,7 +308,8 @@ android:drawablePadding="2sp" android:text="@string/self_check_automated_usage" android:textAlignment="textStart" android:textSize="12sp" /> android:textSize="12sp" android:visibility="gone" /> <TextView android:layout_height="wrap_content" android:layout_marginBottom="15dp" Loading Loading @@ -377,8 +385,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/providerNetResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -426,8 +434,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/serverConfiguredResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -466,8 +474,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/serverReachableResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -507,8 +515,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/validAccountResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading
app/src/main/java/net/fabiszewski/ulogger/SelfCheckFragment.java +14 −3 Original line number Diff line number Diff line Loading @@ -53,9 +53,13 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm private static final String TAG = SelfCheckFragment.class.getSimpleName(); private SwipeRefreshLayout swipe; private SwitchCompat preciseLocationSwitch; private TextView permissionsLabel; private TextView automatedUsageLabel; private View approximateLocationLayout; private TextView approximateLocationLabel; private SwitchCompat approximateLocationSwitch; private View preciseLocationLayout; private SwitchCompat preciseLocationSwitch; private TextView preciseLocationLabel; private View backgroundLocationLayout; private TextView backgroundLocationLabel; Loading Loading @@ -89,8 +93,12 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm View layout = inflater.inflate(R.layout.fragment_self_check, container, false); swipe = (SwipeRefreshLayout) layout; swipe.setOnRefreshListener(this::selfCheck); permissionsLabel = layout.findViewById(R.id.permissionsLabel); automatedUsageLabel = layout.findViewById(R.id.automatedUsageLabel); approximateLocationLayout = layout.findViewById(R.id.permissionApproximateLocation); approximateLocationSwitch = layout.findViewById(R.id.permissionApproximateLocationResult); approximateLocationLabel = layout.findViewById(R.id.permissionApproximateLocationLabel); preciseLocationLayout = layout.findViewById(R.id.permissionPreciseLocation); preciseLocationSwitch = layout.findViewById(R.id.permissionPreciseLocationResult); preciseLocationLabel = layout.findViewById(R.id.permissionPreciseLocationLabel); backgroundLocationLayout = layout.findViewById(R.id.permissionBackgroundLocationSelfCheck); Loading Loading @@ -242,8 +250,11 @@ public class SelfCheckFragment extends Fragment implements PermissionHelper.Perm @RequiresApi(api = Build.VERSION_CODES.M) private void checkPermissions() { setItem(null, approximateLocationLabel, approximateLocationSwitch, ACCESS_COARSE_LOCATION); setItem(null, preciseLocationLabel, preciseLocationSwitch, ACCESS_FINE_LOCATION); permissionsLabel.setVisibility(View.VISIBLE); automatedUsageLabel.setVisibility(View.VISIBLE); setItem(approximateLocationLayout, approximateLocationLabel, approximateLocationSwitch, ACCESS_COARSE_LOCATION); setItem(preciseLocationLayout, preciseLocationLabel, preciseLocationSwitch, ACCESS_FINE_LOCATION); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { setItem(backgroundLocationLayout, backgroundLocationLabel, backgroundLocationSwitch, ACCESS_BACKGROUND_LOCATION); Loading
app/src/main/res/layout/fragment_self_check.xml +19 −11 Original line number Diff line number Diff line Loading @@ -35,6 +35,7 @@ android:textAlignment="viewStart" android:textSize="25sp" /> <TextView android:id="@+id/permissionsLabel" android:layout_height="wrap_content" android:layout_marginBottom="15dp" android:layout_marginTop="10dp" Loading @@ -42,13 +43,16 @@ android:text="@string/self_check_permissions_title" android:textAlignment="textStart" android:textColor="@color/colorBlue" android:textSize="13sp" /> android:textSize="13sp" android:visibility="gone" /> <LinearLayout android:id="@+id/permissionApproximateLocation" android:gravity="top" android:layout_height="wrap_content" android:layout_width="match_parent" android:orientation="horizontal"> android:orientation="horizontal" android:visibility="gone"> <LinearLayout android:layout_height="wrap_content" Loading @@ -74,8 +78,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/permissionApproximateLocationResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading @@ -86,11 +90,13 @@ </LinearLayout> <LinearLayout android:id="@+id/permissionPreciseLocation" android:gravity="top" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:layout_width="match_parent" android:orientation="horizontal"> android:orientation="horizontal" android:visibility="gone"> <LinearLayout android:layout_height="wrap_content" Loading @@ -116,8 +122,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/permissionPreciseLocationResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -283,8 +289,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/batteryUnrestrictedUsageResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:paddingStart="10dp" Loading @@ -294,6 +300,7 @@ </LinearLayout> <TextView android:id="@+id/automatedUsageLabel" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" Loading @@ -301,7 +308,8 @@ android:drawablePadding="2sp" android:text="@string/self_check_automated_usage" android:textAlignment="textStart" android:textSize="12sp" /> android:textSize="12sp" android:visibility="gone" /> <TextView android:layout_height="wrap_content" android:layout_marginBottom="15dp" Loading Loading @@ -377,8 +385,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/providerNetResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -426,8 +434,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/serverConfiguredResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -466,8 +474,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/serverReachableResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading Loading @@ -507,8 +515,8 @@ </LinearLayout> <androidx.appcompat.widget.SwitchCompat android:focusable="false" android:id="@+id/validAccountResult" android:focusable="false" android:layout_height="wrap_content" android:layout_width="wrap_content" android:minHeight="48dp" Loading