Why would the following show a picture on my Samsung Galaxy S mobile but NOT show a picture on my Nexus 7?
If FirstTime Then
Activity.LoadLayout("duff1")
If File.Exists(File.DirRootExternal,"/Download/9921.jpg") = True Then
ToastMessageShow("jpeg file is there.", False)
Else
ToastMessageShow("jpeg file not there.", False)
End If
bmp.Initialize(File.DirRootExternal,"/Download/9921.jpg")
Private bmd As BitmapDrawable
bmd.Initialize(bmp)
Panel1.Background = bmd
End If
Both the Samsung Galaxy phone and the Nexus 7 tablet both return that the jpeg file is there
What am I missing...
Thank you
steve
If FirstTime Then
Activity.LoadLayout("duff1")
If File.Exists(File.DirRootExternal,"/Download/9921.jpg") = True Then
ToastMessageShow("jpeg file is there.", False)
Else
ToastMessageShow("jpeg file not there.", False)
End If
bmp.Initialize(File.DirRootExternal,"/Download/9921.jpg")
Private bmd As BitmapDrawable
bmd.Initialize(bmp)
Panel1.Background = bmd
End If
Both the Samsung Galaxy phone and the Nexus 7 tablet both return that the jpeg file is there
What am I missing...
Thank you
steve