mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-14 05:25:08 -05:00
30 lines
629 B
C#
30 lines
629 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using Android.App;
|
|
using Android.Content;
|
|
using Android.Content.PM;
|
|
using Android.OS;
|
|
using Android.Runtime;
|
|
using Android.Views;
|
|
using Android.Widget;
|
|
|
|
namespace ArtTestApp
|
|
{
|
|
[Activity(Label = "Activity2",
|
|
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.KeyboardHidden)]
|
|
[IntentFilter(new[] { "blabla" },
|
|
Categories = new[] { Intent.CategoryDefault })]
|
|
|
|
public class Activity2 : Activity
|
|
{
|
|
protected override void OnCreate(Bundle bundle)
|
|
{
|
|
base.OnCreate(bundle);
|
|
|
|
// Create your application here
|
|
}
|
|
}
|
|
} |