Merge pull request #31 from free-bots/feature/stream-focus-highlighting

added border for selected camera view
This commit is contained in:
Daniele Verducci 2024-02-10 10:20:32 +01:00 committed by GitHub
commit dd59aa129b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -317,6 +317,7 @@ public class SurveillanceFragment extends Fragment {
} }
}); });
surfaceView.setOnFocusChangeListener((view, hasFocus) -> view.setBackgroundResource(hasFocus ? R.drawable.focus_border : 0));
SurfaceHolder holder = surfaceView.getHolder(); SurfaceHolder holder = surfaceView.getHolder();
holder.setKeepScreenOn(true); holder.setKeepScreenOn(true);

View File

@ -0,0 +1,6 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dip"
android:color="@color/white" />
</shape>