I don't think Silverlight apps can be universal.
Yeah, the universal apps are w8-style. Which means most existing wp8 apps probably won't get going universal, but windows apps probably will
I don't think Silverlight apps can be universal.
Yeah, the universal apps are w8-style. Which means most existing wp8 apps probably won't get going universal, but windows apps probably will
Lumia 930 will be 499 euros in Euroland. Already placed a pre-order.
Wait, 930 doesn't have Glance support? I'm loving Glance on my 1020...
Apparently the reason is due to the lack of display memory in the Icon/930 screen.
http://m.wpcentral.com/nokia-lumia-930-does-not-have-glance-heres-why
Either way, it's an important feature to me and reason enough not to consider the Icon/930.
So I want the 930.. what exactly does glance do, what will I be missing
So I want the 930.. what exactly does glance do, what will I be missing
Wasn't the file manager supposed to come out this month?
So I want the 930.. what exactly does glance do, what will I be missing
So I want the 930.. what exactly does glance do, what will I be missing
You get to feel like a jedi, you can show the clock and notifications by waving your hand over the phone
Glance would be redundant if someone would just put notification leds on their phones.
Glance would be redundant if someone would just put notification leds on their phones.
A notification LED is not going to tell me who called and how many mails, calls ans texts (or other app notifications) I've missed. It's also not going to tell me the weather (or at least the temperature) either.
How do I add the temperature to the glance screen? Just tried but I can't find that...
You cant convert directly into a Universal App, but its fairly simple to do. A little tedious, but simple.I went ahead an upgraded my app to WP8.1, but how do I make it a universal app now? I'm now seeing "Add Windows 8.1" when I right click on the project. Can you not do that with Silverlight apps?
I'm debating starting a new project since my app isn't released yet anyways and I'm also going to be dealing with a brand new set of API endpoints (so I'll have to add/change a lot of code).
NavigationService.Navigate(new uri("/pageXX.xaml")));
you would use
Frame.Navigate(typeof(NameOfPageClass), pageParameter);
private void HardwareButtons_BackPressed(object sender, Windows.Phone.UI.Input.BackPressedEventArgs e)
{
// code to run before page exits
// ...
e.Handled = true;
Windows.Phone.UI.Input.HardwareButtons.BackPressed -= HardwareButtons_BackPressed;
Frame.GoBack();
}
Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed;
Windows.Phone.UI.Input.HardwareButtons.BackPressed -= HardwareButtons_BackPressed;
<Hub>
<Hub Section>
<DataTemplate>
<!-- You cant get at anything within a hub directly through code -->
<TextBox Loaded="TextBox1Loaded"/>
<TextBlock Loaded="TextBlock1Loaded"/>
<Button Loaded="Button1Loaded" />
</DataTemplate>
</Hub Section>
</Hub>
private TextBox textBox1;
private TextBlock textBlock1;
private Button button1;
private void TextBox1Loaded(object sender, RoutedEventArgs e)
{
textBox1 = (sender as TextBox);
}
private void TextBlock1Loaded(object sender, RoutedEventArgs e)
{
textBlock1= (sender as TextBlock);
}
private void Button1Loaded(object sender, RoutedEventArgs e)
{
button1= (sender as Button);
}
You cant convert directly into a Universal App, but its fairly simple to do. A little tedious, but simple.
[...]
You cant convert directly into a Universal App, but its fairly simple to do. A little tedious, but simple.
You have to create a new Project. So
File >> New >> Project >> C# >> Store Apps >> Blank App (Universal App)
That will give you a solution with 3 projects, Windows 8.1, Windows Phone 8.1 and a Shared. What I did was I moved all my C# class files over to the shared project so that the back-end code is the same between the two platforms and I only have to worry about the front-end UI. I found troubles with the App.xaml within the shared solution, especially if you are doing custom templates and resources, so if you use those, it may be worth it to duplicate the file and put one in each of the projects.
From your old project, copy/paste your .xaml files into the Windows Phone 8.1 project and make a couple modifications, the main ones being that instead of
where NameOfPageClass is the name of the class (MainPage, SettingsPage, ect) and pageParameter is an optional argument which is used when passing data between pages.Code:NavigationService.Navigate(new uri("/pageXX.xaml"))); you would use Frame.Navigate(typeof(NameOfPageClass), pageParameter);
Secondly, each Page within the Phone project must have a method in them called
Code:private void HardwareButtons_BackPressed(object sender, Windows.Phone.UI.Input.BackPressedEventArgs e) { // code to run before page exits // ... e.Handled = true; Windows.Phone.UI.Input.HardwareButtons.BackPressed -= HardwareButtons_BackPressed; Frame.GoBack(); }
which you subscribe to within either the Loaded or OnNavigatedTo methods using
Code:Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed;
In addition, any time that you call Frame.Navigate(); or Frame.GoBack() to switch pages, you must call this line of code before the transition.
so that you can take the page off the event stack. (if you dont do this, your app will crash when you next hit the back button and it gets messy)Code:Windows.Phone.UI.Input.HardwareButtons.BackPressed -= HardwareButtons_BackPressed;
From there on, If your using the WPToolkit, you will have to remove all references to that in your project, if you use anything from Nuget (HttpClient, Json.net) you have to just go add those back using the Nuget Package Manger. If you want to use new controls such as Hubs, you cant get at any controls within them, So a little cheat I found out was within the Xaml of the page, you add a Loaded to each of the controls
Then you declare the variables for each type you need access to within the .csCode:<Hub> <Hub Section> <DataTemplate> <!-- You cant get at anything within a hub directly through code --> <TextBox Loaded="TextBox1Loaded"/> <TextBlock Loaded="TextBlock1Loaded"/> <Button Loaded="Button1Loaded" /> </DataTemplate> </Hub Section> </Hub>
and lastly add in the respective eventsCode:private TextBox textBox1; private TextBlock textBlock1; private Button button1;
Code:private void TextBox1Loaded(object sender, RoutedEventArgs e) { textBox1 = (sender as TextBox); } private void TextBlock1Loaded(object sender, RoutedEventArgs e) { textBlock1= (sender as TextBlock); } private void Button1Loaded(object sender, RoutedEventArgs e) { button1= (sender as Button); }
After that your code should be converted or at least 80% good to go. In my case it took me a week, I could have gotten it done within a couple hours but I decided that I didn't like looking at the eyesore of code which was Anitro 1.0.x and decided to rewrite the entire thing
[/devmode]
Nokia Qi car charger. I looks up LG and it's supposedly just few mm bigger than the 1020 so it should work for the G3.
Crazy lol shows how good a job LG has done in slimming down the bezels when their screen is 1" bigger
Crazy lol shows how good a job LG has done in slimming down the bezels when their screen is 1" bigger
You're saying you wish it ran Windows Phone?
With the exception of the OS and the screen is a bit large, it's everything I want for my next phone. Hi-res display, large screen (though I think it's too big), battery (big and removable), good camera, wireless charging and removable storage. If they put Windows Phone 8.1 on it I would ditch my Nokia (RIP) without hesitation. Too bad it's a bit ugly compare to M8 but slightly better than Galaxy as far as look. May be Micro-kia will have something awesome but I am not holding out much hope.
It'd be nice if it did but I feel a move to Android coming. Feel like a change for a while.
It is a large screen but it's no bigger than most of the 5" phones.
The G3 looks much better than the M8, imo.
![]()
I'd like a Nexus version of the G3 (like the Nexus 5/G2), but Google killed it and I don't think I don't want to buy a Nexus phone a year after release anymore.
Why would anyone buy a phone that says "LG" on the front? I would feel so cheap, regardless of the actual cost of the device.
Also I can see why people laughed, it's hideous, those roundings and that color.
Also I can see why people laughed, it's hideous, those roundings and that color.
Have you seen the Red Lumia 1520?
My N5 does not feel cheap. LG makes nicer phones than samsung. G2 does not feel cheap either.Why would anyone buy a phone that says "LG" on the front? I would feel so cheap, regardless of the actual cost of the device.
Also I can see why people laughed, it's hideous, those roundings and that color.
Please tell me that 8.1 supports the 801 and 805 chipsets.
And, although I don't personally care, does it also support the higher resolution on the g3?
Ok, new WP owner/user here, but I've got some questions that only really popped up after I realized I was more invested in the Google ecosystem than I thought.
Phone is a Lumia Icon, just bought it on Verizon. Anyway, I've only had it for a few days but I'm noticing small stuff that just doesn't go as smoothly as it did on my Droid 4 and I'm wondering if you can guide me in the right direction so I don't have to return it. I didn't use that many apps on Droid and I didn't think it was really gonna be a problem, but is there really no dedicated Youtube/Gmail app?
To start off, I'm hating the fact that all my emails are in one folder instead of being able to sort like I can in Gmail. I loved when Gmail added the different types (Primary, Promotions, etc.) of inboxes but the Icon's default mail app ain't doing that. What do you guys use or can I use to keep my email sorted?
For Youtube, there's an "app" on the store, but unless I'm missing something, it just sends me to the mobile version of the site in IE. Is this what you all use? If I'm playing a video, it's fullscreen, sideways, and it also doesn't give me the option like I had on my Droid to have the video playing in a corner while I was doing other stuff on Youtube. Once again, is there a better app I can use for youtube that acts more like the Android app?
Third thing is browsers. Once again, I know Google makes/owns Chrome, but is there any good alternative that may give me a similar experience? I don't really enjoy hitting a button to switch tabs, but rather having them at the top since I only have a few at any given time. I also don't like how if I open IE after closing it and hit the back button it doesn't go back to the last webpage.
The last thing is customization. Is it not possible to modify your tiles/background without a third party app?
Now, I do like a lot about the phone. The camera is amazing, at least compared to my Droid 4. I also love how fluid everything is. It seems like it'll be a good phone once I get these issues worked out, and I hope you all can help me out.
edit: Oh, and how do I get 8.1 on my Icon?
Please tell me that 8.1 supports the 801 and 805 chipsets.
And, although I don't personally care, does it also support the higher resolution on the g3?
Ok, new WP owner/user here
, but I've got some questions that only really popped up after I realized I was more invested in the Google ecosystem than I thought.
Phone is a Lumia Icon, just bought it on Verizon. Anyway, I've only had it for a few days but I'm noticing small stuff that just doesn't go as smoothly as it did on my Droid 4 and I'm wondering if you can guide me in the right direction so I don't have to return it. I didn't use that many apps on Droid and I didn't think it was really gonna be a problem, but is there really no dedicated Youtube/Gmail app?
To start off, I'm hating the fact that all my emails are in one folder instead of being able to sort like I can in Gmail. I loved when Gmail added the different types (Primary, Promotions, etc.) of inboxes but the Icon's default mail app ain't doing that. What do you guys use or can I use to keep my email sorted?
For Youtube, there's an "app" on the store, but unless I'm missing something, it just sends me to the mobile version of the site in IE. Is this what you all use? If I'm playing a video, it's fullscreen, sideways, and it also doesn't give me the option like I had on my Droid to have the video playing in a corner while I was doing other stuff on Youtube. Once again, is there a better app I can use for youtube that acts more like the Android app?
Third thing is browsers. Once again, I know Google makes/owns Chrome, but is there any good alternative that may give me a similar experience? I don't really enjoy hitting a button to switch tabs, but rather having them at the top since I only have a few at any given time. I also don't like how if I open IE after closing it and hit the back button it doesn't go back to the last webpage.
The last thing is customization. Is it not possible to modify your tiles/background without a third party app?
Now, I do like a lot about the phone. The camera is amazing, at least compared to my Droid 4. I also love how fluid everything is. It seems like it'll be a good phone once I get these issues worked out, and I hope you all can help me out.
edit: Oh, and how do I get 8.1 on my Icon?