forked from AvaloniaUI/Avalonia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ControlCatalog.Android project
- Loading branch information
1 parent
a508b59
commit 568a5a8
Showing
12 changed files
with
508 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Any raw assets you want to be deployed with your application can be placed in | ||
this directory (and child directories) and given a Build Action of "AndroidAsset". | ||
|
||
These files will be deployed with you package and will be accessible using Android's | ||
AssetManager, like this: | ||
|
||
public class ReadAsset : Activity | ||
{ | ||
protected override void OnCreate (Bundle bundle) | ||
{ | ||
base.OnCreate (bundle); | ||
|
||
InputStream input = Assets.Open ("my_asset.txt"); | ||
} | ||
} | ||
|
||
Additionally, some Android functions will automatically load asset files: | ||
|
||
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); |
169 changes: 169 additions & 0 deletions
169
samples/ControlCatalog.Android/ControlCatalog.Android.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{29132311-1848-4FD6-AE0C-4FF841151BD3}</ProjectGuid> | ||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>ControlCatalog.Android</RootNamespace> | ||
<AssemblyName>ControlCatalog.Android</AssemblyName> | ||
<FileAlignment>512</FileAlignment> | ||
<AndroidApplication>true</AndroidApplication> | ||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile> | ||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> | ||
<AndroidUseLatestPlatformSdk>False</AndroidUseLatestPlatformSdk> | ||
<TargetFrameworkVersion>v4.4</TargetFrameworkVersion> | ||
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>True</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime> | ||
<AndroidLinkMode>None</AndroidLinkMode> | ||
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk> | ||
<BundleAssemblies>False</BundleAssemblies> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidSupportedAbis>armeabi,armeabi-v7a,x86</AndroidSupportedAbis> | ||
<Debugger>Xamarin</Debugger> | ||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime> | ||
<AndroidLinkMode>Full</AndroidLinkMode> | ||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> | ||
<BundleAssemblies>False</BundleAssemblies> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidSupportedAbis>armeabi,armeabi-v7a,x86</AndroidSupportedAbis> | ||
<Debugger>Xamarin</Debugger> | ||
<AotAssemblies>False</AotAssemblies> | ||
<EnableLLVM>False</EnableLLVM> | ||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> | ||
<EnableProguard>False</EnableProguard> | ||
<DebugSymbols>False</DebugSymbols> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Mono.Android" /> | ||
<Reference Include="mscorlib" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="MainActivity.cs" /> | ||
<Compile Include="Resources\Resource.Designer.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="GettingStarted.Xamarin" /> | ||
<None Include="Resources\AboutResources.txt" /> | ||
<None Include="Assets\AboutAssets.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidResource Include="Resources\layout\Main.axml"> | ||
<SubType>Designer</SubType> | ||
</AndroidResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidResource Include="Resources\values\Strings.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidResource Include="Resources\drawable\Icon.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="Properties\AndroidManifest.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj"> | ||
<Project>{7B92AF71-6287-4693-9DCB-BD5B6E927E23}</Project> | ||
<Name>Avalonia.Android</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj"> | ||
<Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project> | ||
<Name>Avalonia.Animation</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj"> | ||
<Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project> | ||
<Name>Avalonia.Base</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj"> | ||
<Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project> | ||
<Name>Avalonia.Controls</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj"> | ||
<Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project> | ||
<Name>Avalonia.Diagnostics</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.DotNetFrameworkRuntime\Avalonia.DotNetFrameworkRuntime.csproj"> | ||
<Project>{4a1abb09-9047-4bd5-a4ad-a055e52c5ee0}</Project> | ||
<Name>Avalonia.DotNetFrameworkRuntime</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.HtmlRenderer\Avalonia.HtmlRenderer.csproj"> | ||
<Project>{5fb2b005-0a7f-4dad-add4-3ed01444e63d}</Project> | ||
<Name>Avalonia.HtmlRenderer</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj"> | ||
<Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project> | ||
<Name>Avalonia.Input</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj"> | ||
<Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project> | ||
<Name>Avalonia.Interactivity</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj"> | ||
<Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project> | ||
<Name>Avalonia.Layout</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.SceneGraph\Avalonia.SceneGraph.csproj"> | ||
<Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project> | ||
<Name>Avalonia.SceneGraph</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj"> | ||
<Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project> | ||
<Name>Avalonia.Styling</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj"> | ||
<Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project> | ||
<Name>Avalonia.Themes.Default</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj"> | ||
<Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project> | ||
<Name>Avalonia.Markup.Xaml</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj"> | ||
<Project>{6417e941-21bc-467b-a771-0de389353ce6}</Project> | ||
<Name>Avalonia.Markup</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\src\Skia\Avalonia.Skia.Android\Avalonia.Skia.Android.csproj"> | ||
<Project>{bd43f7c0-396b-4aa1-bad9-dfde54d51298}</Project> | ||
<Name>Avalonia.Skia.Android</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj"> | ||
<Project>{d0a739b9-3c68-4ba6-a328-41606954b6bd}</Project> | ||
<Name>ControlCatalog</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<GettingStarted> | ||
<LocalContent>GS\Android\CS\AndroidApp\GettingStarted.html</LocalContent> | ||
<EmbeddedNavigation>false</EmbeddedNavigation> | ||
</GettingStarted> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
using System; | ||
using Android.App; | ||
|
||
using Android.OS; | ||
using Android.Content.PM; | ||
using Avalonia.Android.Platform.Specific; | ||
using Avalonia.Controls; | ||
using Avalonia.Controls.Templates; | ||
using Avalonia.Markup.Xaml; | ||
using Avalonia.Media; | ||
using Avalonia.Styling; | ||
using Avalonia.Themes.Default; | ||
using Avalonia; | ||
|
||
namespace ControlCatalog.Android | ||
{ | ||
[Activity(Label = "ControlCatalog.Android", MainLauncher = true, Icon = "@drawable/icon", LaunchMode = LaunchMode.SingleInstance)] | ||
public class MainActivity : AvaloniaActivity | ||
{ | ||
public MainActivity() : base(typeof (App)) | ||
{ | ||
|
||
} | ||
|
||
protected override void OnCreate(Bundle savedInstanceState) | ||
{ | ||
base.OnCreate(savedInstanceState); | ||
|
||
App app; | ||
if (Avalonia.Application.Current != null) | ||
app = (App)Avalonia.Application.Current; | ||
else | ||
{ | ||
app = new App(); | ||
AppBuilder.Configure(app) | ||
.UseAndroid() | ||
.UseSkia() | ||
.SetupWithoutStarting(); | ||
} | ||
|
||
var mainWindow = new MainWindow(); | ||
app.Run(mainWindow); | ||
} | ||
} | ||
} | ||
|
5 changes: 5 additions & 0 deletions
5
samples/ControlCatalog.Android/Properties/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ControlCatalog.Android" android:versionCode="1" android:versionName="1.0" android:installLocation="auto"> | ||
<uses-sdk /> | ||
<application android:label="ControlCatalog.Android"></application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
using Android.App; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("ControlCatalog.Android")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("ControlCatalog.Android")] | ||
[assembly: AssemblyCopyright("Copyright © 2016")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: ComVisible(false)] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
Oops, something went wrong.