Posts by Luis • 156 points
8 posts
-
2
votes1
answer35
viewsA: Navigation in Android Mobile Apps
Android has a mechanism similar to Windows Phone, the "pages" are stacked so that when you press the back button, the Activity (page) is closed and the previous one is displayed, if you don’t have a…
-
1
votes1
answer70
viewsA: Recovering the application status when selecting an item in Gridview
Hello. Just use the navigation cache NavigationCacheMode. There are three modes: NavigationCacheMode = NavigationCacheMode.Disabled - The page is not cached, that is, after exiting the screen and…
-
2
votes1
answer259
viewsA: Pass/Receive <List> between pages and fill listview C# Windows Phone 8.1
You are sending a List<ClassDados> to page 2, then on page 2 you will receive the same thing, so just change the mode with which you are receiving the variable Page 1…
-
0
votes1
answer83
viewsA: how to put a focus on a Textbox object on Windows Phone 8.1
To focus on an object, use the property Focus, as follows: Focus(FocusState); Example: In a Textbox called textBox, to set the focus use: textBox.Focus(FocusState.Pointer);…
-
0
votes1
answer119
viewsA: How to pick up values from a listview on another.xaml page
You want to access the selected item, right? As of the current mode, you are sending all the ListView to the next page. Instead, send only the selected object using the SelectedItem public void…
-
1
votes1
answer75
viewsA: Different Windows (Xaml) for Landscape and Portrait
First create two Grids, one with simple calculator and in picture mode, and another with advanced calculator in landscape mode. One can stand over the other. To see the Designer in landscape mode,…
-
1
votes2
answers190
viewsA: Publish Windows Phone Silverlight app
In the WMAppManifest.xml, on the flap Packaging, the name of Author and Publisher must be the same that you registered in the Store, that is, your developer name must be in the fields Author and…
-
1
votes1
answer85
viewsA: Has anyone ever used Admob on Windows Phone 8.1 Silverlight and it worked?
Even long after. Yes, Admob only doesn’t work on Windows Phone 8.1 Runtime (Winrt). I advise you to use Ad Mediator, so you can include other ad networks in your app.…