-
Notifications
You must be signed in to change notification settings - Fork 41
feat/add-android-tv-support #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
060014b to
2b85832
Compare
|
@shuuri-labs Looks like the close button in the peers/networks view is not selectable. |
| android:textSize="18sp" | ||
| android:textStyle="bold" | ||
| android:textColor="@android:color/black" | ||
| android:text="Device Code: XXXX-XXXX" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move the texts to the strings.xml
|
The peers view is broken on all types of screens. The hamburger menu has been hidden, and it does not cover the view at the bottom of the screen |
|
|
||
| // Pass TV flag to fragments | ||
| Bundle args = new Bundle(); | ||
| args.putBoolean("isRunningOnTV", isRunningOnTV); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use constant instead of a string
|
If I touch the new 'Close' button, the service gets stuck in the 'Connecting' state, and I can never retry. |
Add android TV support with the following changes: - Implement new URLOpener interface with updated open method that accepts UserCode - Add logic to MainActivity.java to detect Android TV, adjust UI and SSO flow accordingly - Add QRCodeDialog.java to handle QR code/user code display logic - Updated relevant layout xml files - Add TV banner icon
881bc63 to
f9aa4a0
Compare
- qr code dialog now auto-dismisses when connection successful, or reports failure to mainactivity when not successful - general cleanup
f9aa4a0 to
2f63a45
Compare





Add android TV support with the following changes: