sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
Registration Code | |
Name : www.xyraclius.com | |
Serial : OOCRYIMDMDPWRETFPSUZ |
// set zoom event | |
window.onzoom = function(e) { | |
// zoom event | |
} | |
// detect resize | |
(function() { | |
var oldresize = window.onresize; | |
window.onresize = function(e) { |
##Getting results from DialogFragments to another Fragment.
When setting up the DialogFragment make a call to Fragment.setTargetFragment()
Then from DialogFragment you can access the main fragment with
Fragment.getTargetFragment()
Use interfaces to provide the required actions to the calling Fragment.
##Example code.
###AddFriendDialogFragment - Calls back to calling fragment.