Mobile Programming
Mobile Programming
?
• The official language for Android development is Java
Windows
Phone Android iOS
<ContentPage>
<StackLayout Spacing="20"
Padding="50"
VerticalOptions="Center">
<Entry Placeholder="User name"/>
<Entry Placeholder="Password"
IsPassword="True" />
<Button Text="Login"
TextColor="White"
BackgroundColor="##FF77D065"/>
</StackLayout>
</ContentPage>
XAML Code Example
Windows
Phone Android iOS
<ContentPage>
<StackLayout Spacing="20"
Padding="50"
VerticalOptions="Center">
<Entry Placeholder="User name"/>
<Entry Placeholder="Password"
IsPassword="True" />
<Button Text="Login"
TextColor="White"
BackgroundColor="##FF77D065"/>
</StackLayout>
</ContentPage>
Problem: No GUI editor for Xamarin-XAML
Possible Solution: Use Microsoft-XAML (Windows
Presentation Foundation [WPF])
Xamarin-XAML Microsoft - XAML
<ContentPage> <Page>
<StackLayout Spacing="20" <StackPanel Margin="50"
VerticalAlign="Center">
Padding="50"
<TextBox PlaceholderText="User name" />
VerticalOptions="Center"> <PasswordBox PlaceholderText="Password" />
<Entry Placeholder="User name" /> <Button Content="Login" Foreground="White"
<Entry Placeholder="Password" Background="##FF77D065" />
</StackPanel>
IsPassword="True" />
</Page>
<Button Text="Login" TextColor="White"
BackgroundColor="##FF77D065" />
</StackLayout>
</ContentPage>
Problem: No GUI editor for Xamarin-XAML
Possible Solution: Use Microsoft-XAML (Windows
Presentation Foundation [WPF])
Xamarin-XAML Microsoft - XAML
<ContentPage> <Page>
<StackLayout Spacing="20" <StackPanel Margin="50"
VerticalAlign="Center">
Padding="50"
<TextBox PlaceholderText="User name" />
VerticalOptions="Center"> <PasswordBox PlaceholderText="Password" />
<Entry Placeholder="User name" /> <Button Content="Login" Foreground="White"
<Entry Placeholder="Password" Background="##FF77D065" />
</StackPanel>
IsPassword="True" />
</Page>
<Button Text="Login" TextColor="White"
BackgroundColor="##FF77D065" />
</StackLayout>
</ContentPage>
Tools (For windows users):
1- Microsoft Visual Studio 2019 – Preview edition