diff --git a/Klient/Klient/Klient.Android/MainActivity.cs b/Klient/Klient/Klient.Android/MainActivity.cs index 5c111f7..a01c746 100644 --- a/Klient/Klient/Klient.Android/MainActivity.cs +++ b/Klient/Klient/Klient.Android/MainActivity.cs @@ -12,15 +12,29 @@ using System.Collections.Generic; using System.Security; using System.Net; using System.Linq; -using System.IO; + using Newtonsoft.Json; using Klient.Droid.Modules; +using Android.Provider; +using Android.Content; +using Android.Graphics; +using Newtonsoft.Json.Linq; + +using Com.Xamarin.Formsviewgroup; +using Android.Icu.Text; +using System.IO; +using Android.Media; +using System.Threading.Tasks; +using Java.IO; +using System.Net.Http.Headers; namespace Klient.Droid { [Activity(Label = "Klient", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity { + Bitmap bitmap; + ByteArrayContent fileContent; public static int PickImageId = 1000; private static readonly HttpClient client = new HttpClient(); public static Android.Content.Intent photo; @@ -36,7 +50,9 @@ namespace Klient.Droid base.OnCreate(savedInstanceState); global::Xamarin.Forms.Forms.Init(this, savedInstanceState); - LoadApplication(new App()); + StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); + StrictMode.SetVmPolicy(builder.Build()); + LoadApplication(new App()); SetContentView(Resource.Layout.ekranStartowy); } @@ -86,6 +102,12 @@ namespace Klient.Droid } } + [Java.Interop.Export("HelpLoginScreen")] + public void GoToAboutScreen(View v) + { + SetContentView(Resource.Layout.ekranInformacji); + } + [Java.Interop.Export("SignUp")] async public void SignUp(View v) { @@ -152,6 +174,13 @@ namespace Klient.Droid } } + [Java.Interop.Export("HelpRegisterScreen")] + public void GoToRegisterHelp(View v) + { + SetContentView(Resource.Layout.ekranPomocRejestracja); + } + + [Java.Interop.Export("GoToProfile")] public void GoBackToProfile(View v) { @@ -175,11 +204,6 @@ namespace Klient.Droid SetContentView(Resource.Layout.ekranRejestracji); } - [Java.Interop.Export("HelpLoginScreen")] - public void MainScreenAbout(View v) - { - SetContentView(Resource.Layout.ekranInformacji); - } [Java.Interop.Export("GoToMainScreenFromInformation")] public void GoToMainScreenFromInformation(View v) { @@ -194,6 +218,18 @@ namespace Klient.Droid StartActivityForResult(Android.Content.Intent.CreateChooser(Intent, "Select Picture"), PickImageId); } + + [Java.Interop.Export("LoadFromCamera")] + public void LoadFromCamera(View v) + { + Intent intent = new Intent(MediaStore.ActionImageCapture); + //Android.Net.Uri pictureUri = Android.Net.Uri.FromFile(new File(GetExternalFilesDir(Android.OS.Environment.DirectoryDcim), Guid.NewGuid().ToString().Replace(".", "")+".jpg")); + //intent.PutExtra(MediaStore.ExtraOutput, pictureUri); + StartActivityForResult(intent, 0); + + } + + [Java.Interop.Export("GoToStart")] public void GoToStart(View v) { @@ -208,46 +244,71 @@ namespace Klient.Droid protected override void OnActivityResult(int requestCode, Result resultCode, Android.Content.Intent data) { SetContentView(Resource.Layout.ekranPoZdjeciu); - Android.Net.Uri uri = data.Data; - photo = data; - FindViewById(Resource.Id.Preview).SetImageURI(uri); + FindViewById(Resource.Id.ErrorPhoto).Text = ""; + if (requestCode == 0) + { + photo = data; + base.OnActivityResult(requestCode, resultCode, data); + if(data != null) bitmap = (Bitmap)data.Extras.Get("data"); + byte[] bitmapData; + var stream = new MemoryStream(); + bitmap.Compress(Bitmap.CompressFormat.Jpeg, 60, stream); + bitmapData = stream.ToArray(); + fileContent = new ByteArrayContent(bitmapData); + + + FindViewById(Resource.Id.Preview).SetImageBitmap(bitmap); + + } + else if(requestCode == PickImageId) + { + Android.Net.Uri uri = data.Data; + photo = data; + FindViewById(Resource.Id.Preview).SetImageURI(uri); + } + else if(data == null) + { + SetContentView(Resource.Layout.ekranPoLogowaniu); + } + } + [Java.Interop.Export("SendPhoto")] async public void UploadPhoto(View v) { - using(var imageStream = ContentResolver.OpenInputStream(photo.Data)) - using(var stramContent = new StreamContent(imageStream)) - using(var byteArrayContent = new ByteArrayContent(await stramContent.ReadAsByteArrayAsync())) - using(var formDataContent = new MultipartFormDataContent()) + if(photo.Data == null) { - formDataContent.Add(byteArrayContent, "image", Guid.NewGuid() + ".jpg"); - foreach (var content in formDataContent) + fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("application/octet-stream"); + fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data") { - content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue(ContentResolver.GetType(photo.Data)); - break; - } + Name = "image", + FileName = Guid.NewGuid().ToString() + }; + + string boundary = "---8d0f01e6b3b5dafaaadaad"; + MultipartFormDataContent formDataContent = new MultipartFormDataContent(boundary); + formDataContent.Add(fileContent); + var response = await client.PostAsync("http://10.0.2.2:5001/api/Image/Process", formDataContent); - if(response.StatusCode == HttpStatusCode.OK) + if (response.StatusCode == HttpStatusCode.OK) { var jsonString = await response.Content.ReadAsStringAsync(); - dynamic jsonObject = JsonConvert.DeserializeObject(jsonString); FindViewById(Resource.Id.ErrorPhoto).Text = "Przesłano zdjęcie!"; SetContentView(Resource.Layout.ekranZLinkami); - var second_response = await client.GetAsync("http://10.0.2.2:5001/api/Search", jsonObject.response); - if(second_response.StatusCode == HttpStatusCode.OK) + var second_response = await client.GetAsync($"http://10.0.2.2:5001/api/Search/{jsonString}"); + if (second_response.StatusCode == HttpStatusCode.OK) { var second_jsonString = await response.Content.ReadAsStringAsync(); - dynamic second_jsonObject = JsonConvert.DeserializeObject(second_jsonString); - - List fullLink = JsonConvert.DeserializeObject>(second_jsonObject); + + List fullLink = JsonConvert.DeserializeObject>(second_jsonString); int end = 10; if (fullLink.Count < 10) end = fullLink.Count; for (int i = 0; i < end; i++) { - FindViewById(Resource.Id.links).Text = FindViewById(Resource.Id.links).Text + fullLink[i].Title + ": " + fullLink[i].Link + "\n\n"; + FindViewById(Resource.Id.links).Text = FindViewById(Resource.Id.links).Text + fullLink[i].title + ": " + fullLink[i].link + "\n\n"; } } else @@ -263,6 +324,50 @@ namespace Klient.Droid FindViewById(Resource.Id.ErrorPhoto).Text = msg; } } + + using(var imageStream = ContentResolver.OpenInputStream(photo.Data)) + using(var stramContent = new StreamContent(imageStream)) + using(var byteArrayContent = new ByteArrayContent(await stramContent.ReadAsByteArrayAsync())) + using(var formDataContent = new MultipartFormDataContent()) + { + formDataContent.Add(byteArrayContent, "image", Guid.NewGuid() + ".jpg"); + foreach (var content in formDataContent) + { + content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue(ContentResolver.GetType(photo.Data)); + break; + } + var response = await client.PostAsync("http://10.0.2.2:5001/api/Image/Process", formDataContent); + if(response.StatusCode == HttpStatusCode.OK) + { + var jsonString = await response.Content.ReadAsStringAsync(); + FindViewById(Resource.Id.ErrorPhoto).Text = "Przesłano zdjęcie!"; + SetContentView(Resource.Layout.ekranZLinkami); + var second_response = await client.GetAsync($"http://10.0.2.2:5001/api/Search/{jsonString}"); + if(second_response.StatusCode == HttpStatusCode.OK) + { + var second_jsonString = await second_response.Content.ReadAsStringAsync(); + List fullLink = JsonConvert.DeserializeObject>(second_jsonString); + + int end = 10; + if (fullLink.Count < 10) end = fullLink.Count; + for (int i = 0; i < end; i++) + { + FindViewById(Resource.Id.links).Text = FindViewById(Resource.Id.links).Text + fullLink[i].title + ": " + fullLink[i].link + "\n\n"; + } + } + else + { + FindViewById(Resource.Id.links).Text = "Coś poszło nie tak!"; + } + + + } + else + { + string msg = await response.Content.ReadAsStringAsync(); + FindViewById(Resource.Id.ErrorPhoto).Text = msg; + } + } } [Java.Interop.Export("GoToProfil")] @@ -331,7 +436,8 @@ namespace Klient.Droid { var jsonString = await response.Content.ReadAsStringAsync(); dynamic jsonObject = JsonConvert.DeserializeObject(jsonString); - List history = JsonConvert.DeserializeObject>(jsonObject.history); + var hs = (JArray)jsonObject.history; + List history = hs.ToObject>(); int end = 10; int temp; if (history.Count < 10) end = history.Count; @@ -343,8 +449,15 @@ namespace Klient.Droid } else { - FindViewById(Resource.Id.history).Text = "Coś poszło nie tak!"; + string msg = await response.Content.ReadAsStringAsync(); + FindViewById(Resource.Id.HistoryError).Text = msg; } } + + [Java.Interop.Export("HelpPhoto")] + public void GotToHelpPhoto(View v) + { + SetContentView(Resource.Layout.ekranPomocZdjecie); + } } } \ No newline at end of file diff --git a/Klient/Klient/Klient.Android/Modules/SearchResult.cs b/Klient/Klient/Klient.Android/Modules/SearchResult.cs index fc435d5..26626a9 100644 --- a/Klient/Klient/Klient.Android/Modules/SearchResult.cs +++ b/Klient/Klient/Klient.Android/Modules/SearchResult.cs @@ -13,8 +13,8 @@ namespace Klient.Droid.Modules { public class SearchResult { - public string Title { get; set; } - public string Link { get; set; } - public string Snippet { get; set; } + public string title { get; set; } + public string link { get; set; } + public string snippet { get; set; } } } \ No newline at end of file diff --git a/Klient/Klient/Klient.Android/Poszukiwacz.csproj b/Klient/Klient/Klient.Android/Poszukiwacz.csproj index 703b9a2..66fd117 100644 --- a/Klient/Klient/Klient.Android/Poszukiwacz.csproj +++ b/Klient/Klient/Klient.Android/Poszukiwacz.csproj @@ -36,6 +36,7 @@ false Xamarin + true @@ -149,11 +150,6 @@ Designer - - - Designer - - Designer @@ -174,6 +170,17 @@ Designer + + + Designer + + + + + + + + diff --git a/Klient/Klient/Klient.Android/Properties/AndroidManifest.xml b/Klient/Klient/Klient.Android/Properties/AndroidManifest.xml index bafd9a1..59040e3 100644 --- a/Klient/Klient/Klient.Android/Properties/AndroidManifest.xml +++ b/Klient/Klient/Klient.Android/Properties/AndroidManifest.xml @@ -1,7 +1,6 @@  - - - - + + + \ No newline at end of file diff --git a/Klient/Klient/Klient.Android/Resources/Resource.designer.cs b/Klient/Klient/Klient.Android/Resources/Resource.designer.cs index 2c2b2f7..02a7546 100644 --- a/Klient/Klient/Klient.Android/Resources/Resource.designer.cs +++ b/Klient/Klient/Klient.Android/Resources/Resource.designer.cs @@ -9039,10 +9039,13 @@ namespace Klient.Droid public const int Obraz3 = 2131165499; // aapt resource value: 0x7F07013C - public const int tooltip_frame_dark = 2131165500; + public const int Obraz4 = 2131165500; // aapt resource value: 0x7F07013D - public const int tooltip_frame_light = 2131165501; + public const int tooltip_frame_dark = 2131165501; + + // aapt resource value: 0x7F07013E + public const int tooltip_frame_light = 2131165502; static Drawable() { @@ -9057,158 +9060,161 @@ namespace Klient.Droid public partial class Id { - // aapt resource value: 0x7F08002D - public const int about = 2131230765; - - // aapt resource value: 0x7F08002E - public const int action0 = 2131230766; - - // aapt resource value: 0x7F080040 - public const int actions = 2131230784; - // aapt resource value: 0x7F08002F - public const int action_bar = 2131230767; + public const int about = 2131230767; // aapt resource value: 0x7F080030 - public const int action_bar_activity_content = 2131230768; - - // aapt resource value: 0x7F080031 - public const int action_bar_container = 2131230769; - - // aapt resource value: 0x7F080032 - public const int action_bar_root = 2131230770; - - // aapt resource value: 0x7F080033 - public const int action_bar_spinner = 2131230771; - - // aapt resource value: 0x7F080034 - public const int action_bar_subtitle = 2131230772; - - // aapt resource value: 0x7F080035 - public const int action_bar_title = 2131230773; - - // aapt resource value: 0x7F080036 - public const int action_container = 2131230774; - - // aapt resource value: 0x7F080037 - public const int action_context_bar = 2131230775; - - // aapt resource value: 0x7F080038 - public const int action_divider = 2131230776; - - // aapt resource value: 0x7F080039 - public const int action_image = 2131230777; - - // aapt resource value: 0x7F08003A - public const int action_menu_divider = 2131230778; - - // aapt resource value: 0x7F08003B - public const int action_menu_presenter = 2131230779; - - // aapt resource value: 0x7F08003C - public const int action_mode_bar = 2131230780; - - // aapt resource value: 0x7F08003D - public const int action_mode_bar_stub = 2131230781; - - // aapt resource value: 0x7F08003E - public const int action_mode_close_button = 2131230782; - - // aapt resource value: 0x7F08003F - public const int action_text = 2131230783; - - // aapt resource value: 0x7F080041 - public const int activity_chooser_view_content = 2131230785; + public const int action0 = 2131230768; // aapt resource value: 0x7F080042 - public const int add = 2131230786; + public const int actions = 2131230786; + + // aapt resource value: 0x7F080031 + public const int action_bar = 2131230769; + + // aapt resource value: 0x7F080032 + public const int action_bar_activity_content = 2131230770; + + // aapt resource value: 0x7F080033 + public const int action_bar_container = 2131230771; + + // aapt resource value: 0x7F080034 + public const int action_bar_root = 2131230772; + + // aapt resource value: 0x7F080035 + public const int action_bar_spinner = 2131230773; + + // aapt resource value: 0x7F080036 + public const int action_bar_subtitle = 2131230774; + + // aapt resource value: 0x7F080037 + public const int action_bar_title = 2131230775; + + // aapt resource value: 0x7F080038 + public const int action_container = 2131230776; + + // aapt resource value: 0x7F080039 + public const int action_context_bar = 2131230777; + + // aapt resource value: 0x7F08003A + public const int action_divider = 2131230778; + + // aapt resource value: 0x7F08003B + public const int action_image = 2131230779; + + // aapt resource value: 0x7F08003C + public const int action_menu_divider = 2131230780; + + // aapt resource value: 0x7F08003D + public const int action_menu_presenter = 2131230781; + + // aapt resource value: 0x7F08003E + public const int action_mode_bar = 2131230782; + + // aapt resource value: 0x7F08003F + public const int action_mode_bar_stub = 2131230783; + + // aapt resource value: 0x7F080040 + public const int action_mode_close_button = 2131230784; + + // aapt resource value: 0x7F080041 + public const int action_text = 2131230785; // aapt resource value: 0x7F080043 - public const int alertTitle = 2131230787; + public const int activity_chooser_view_content = 2131230787; // aapt resource value: 0x7F080044 - public const int all = 2131230788; + public const int add = 2131230788; + + // aapt resource value: 0x7F080045 + public const int alertTitle = 2131230789; + + // aapt resource value: 0x7F080046 + public const int all = 2131230790; // aapt resource value: 0x7F080000 public const int ALT = 2131230720; - // aapt resource value: 0x7F080045 - public const int always = 2131230789; - - // aapt resource value: 0x7F080046 - public const int async = 2131230790; - // aapt resource value: 0x7F080047 - public const int auto = 2131230791; + public const int always = 2131230791; // aapt resource value: 0x7F080048 - public const int backHistory = 2131230792; + public const int async = 2131230792; // aapt resource value: 0x7F080049 - public const int backInformation = 2131230793; + public const int auto = 2131230793; // aapt resource value: 0x7F08004A - public const int backLogowanie = 2131230794; + public const int backHistory = 2131230794; // aapt resource value: 0x7F08004B - public const int backPomocZdjecie = 2131230795; + public const int backInformation = 2131230795; // aapt resource value: 0x7F08004C - public const int backProfil = 2131230796; + public const int backLogowanie = 2131230796; // aapt resource value: 0x7F08004D - public const int backRejestracja = 2131230797; + public const int backPomocZdjecie = 2131230797; // aapt resource value: 0x7F08004E - public const int backToSendPhoto = 2131230798; + public const int backProfil = 2131230798; // aapt resource value: 0x7F08004F - public const int backZdjecie = 2131230799; + public const int backRegisterHelp = 2131230799; // aapt resource value: 0x7F080050 - public const int beginning = 2131230800; + public const int backRejestracja = 2131230800; // aapt resource value: 0x7F080051 - public const int blocking = 2131230801; + public const int backToSendPhoto = 2131230801; // aapt resource value: 0x7F080052 - public const int bottom = 2131230802; + public const int backZdjecie = 2131230802; // aapt resource value: 0x7F080053 - public const int bottomtab_navarea = 2131230803; + public const int beginning = 2131230803; // aapt resource value: 0x7F080054 - public const int bottomtab_tabbar = 2131230804; + public const int blocking = 2131230804; // aapt resource value: 0x7F080055 - public const int browser_actions_header_text = 2131230805; - - // aapt resource value: 0x7F080058 - public const int browser_actions_menu_items = 2131230808; + public const int bottom = 2131230805; // aapt resource value: 0x7F080056 - public const int browser_actions_menu_item_icon = 2131230806; + public const int bottomtab_navarea = 2131230806; // aapt resource value: 0x7F080057 - public const int browser_actions_menu_item_text = 2131230807; + public const int bottomtab_tabbar = 2131230807; - // aapt resource value: 0x7F080059 - public const int browser_actions_menu_view = 2131230809; - - // aapt resource value: 0x7F08005A - public const int buttonPanel = 2131230810; + // aapt resource value: 0x7F080058 + public const int browser_actions_header_text = 2131230808; // aapt resource value: 0x7F08005B - public const int cancel_action = 2131230811; + public const int browser_actions_menu_items = 2131230811; + + // aapt resource value: 0x7F080059 + public const int browser_actions_menu_item_icon = 2131230809; + + // aapt resource value: 0x7F08005A + public const int browser_actions_menu_item_text = 2131230810; // aapt resource value: 0x7F08005C - public const int center = 2131230812; + public const int browser_actions_menu_view = 2131230812; // aapt resource value: 0x7F08005D - public const int center_horizontal = 2131230813; + public const int buttonPanel = 2131230813; // aapt resource value: 0x7F08005E - public const int center_vertical = 2131230814; + public const int cancel_action = 2131230814; + + // aapt resource value: 0x7F08005F + public const int center = 2131230815; + + // aapt resource value: 0x7F080060 + public const int center_horizontal = 2131230816; + + // aapt resource value: 0x7F080061 + public const int center_vertical = 2131230817; // aapt resource value: 0x7F080002 public const int ChangeEmail = 2131230722; @@ -9219,83 +9225,83 @@ namespace Klient.Droid // aapt resource value: 0x7F080004 public const int ChangeSurname = 2131230724; - // aapt resource value: 0x7F08005F - public const int checkbox = 2131230815; - - // aapt resource value: 0x7F080060 - public const int chronometer = 2131230816; - - // aapt resource value: 0x7F080061 - public const int clip_horizontal = 2131230817; - // aapt resource value: 0x7F080062 - public const int clip_vertical = 2131230818; + public const int checkbox = 2131230818; // aapt resource value: 0x7F080063 - public const int collapseActionView = 2131230819; + public const int chronometer = 2131230819; // aapt resource value: 0x7F080064 - public const int container = 2131230820; + public const int clip_horizontal = 2131230820; // aapt resource value: 0x7F080065 - public const int content = 2131230821; + public const int clip_vertical = 2131230821; // aapt resource value: 0x7F080066 - public const int contentPanel = 2131230822; + public const int collapseActionView = 2131230822; // aapt resource value: 0x7F080067 - public const int coordinator = 2131230823; + public const int container = 2131230823; + + // aapt resource value: 0x7F080068 + public const int content = 2131230824; + + // aapt resource value: 0x7F080069 + public const int contentPanel = 2131230825; + + // aapt resource value: 0x7F08006A + public const int coordinator = 2131230826; // aapt resource value: 0x7F080001 public const int CTRL = 2131230721; - // aapt resource value: 0x7F080068 - public const int custom = 2131230824; - - // aapt resource value: 0x7F080069 - public const int customPanel = 2131230825; - - // aapt resource value: 0x7F08006A - public const int decor_content_parent = 2131230826; - // aapt resource value: 0x7F08006B - public const int default_activity_button = 2131230827; + public const int custom = 2131230827; // aapt resource value: 0x7F08006C - public const int design_bottom_sheet = 2131230828; + public const int customPanel = 2131230828; // aapt resource value: 0x7F08006D - public const int design_menu_item_action_area = 2131230829; + public const int decor_content_parent = 2131230829; // aapt resource value: 0x7F08006E - public const int design_menu_item_action_area_stub = 2131230830; + public const int default_activity_button = 2131230830; // aapt resource value: 0x7F08006F - public const int design_menu_item_text = 2131230831; + public const int design_bottom_sheet = 2131230831; // aapt resource value: 0x7F080070 - public const int design_navigation_view = 2131230832; + public const int design_menu_item_action_area = 2131230832; // aapt resource value: 0x7F080071 - public const int disableHome = 2131230833; + public const int design_menu_item_action_area_stub = 2131230833; // aapt resource value: 0x7F080072 - public const int edit_query = 2131230834; + public const int design_menu_item_text = 2131230834; + + // aapt resource value: 0x7F080073 + public const int design_navigation_view = 2131230835; + + // aapt resource value: 0x7F080074 + public const int disableHome = 2131230836; + + // aapt resource value: 0x7F080075 + public const int edit_query = 2131230837; // aapt resource value: 0x7F080005 public const int Email = 2131230725; - // aapt resource value: 0x7F080073 - public const int end = 2131230835; - - // aapt resource value: 0x7F080074 - public const int end_padder = 2131230836; - - // aapt resource value: 0x7F080075 - public const int enterAlways = 2131230837; - // aapt resource value: 0x7F080076 - public const int enterAlwaysCollapsed = 2131230838; + public const int end = 2131230838; + + // aapt resource value: 0x7F080077 + public const int end_padder = 2131230839; + + // aapt resource value: 0x7F080078 + public const int enterAlways = 2131230840; + + // aapt resource value: 0x7F080079 + public const int enterAlwaysCollapsed = 2131230841; // aapt resource value: 0x7F080006 public const int ErrorLogIn = 2131230726; @@ -9306,38 +9312,38 @@ namespace Klient.Droid // aapt resource value: 0x7F080008 public const int ErrorRegister = 2131230728; - // aapt resource value: 0x7F080077 - public const int exitUntilCollapsed = 2131230839; - - // aapt resource value: 0x7F080079 - public const int expanded_menu = 2131230841; - - // aapt resource value: 0x7F080078 - public const int expand_activities_button = 2131230840; - // aapt resource value: 0x7F08007A - public const int fill = 2131230842; - - // aapt resource value: 0x7F08007D - public const int filled = 2131230845; - - // aapt resource value: 0x7F08007B - public const int fill_horizontal = 2131230843; + public const int exitUntilCollapsed = 2131230842; // aapt resource value: 0x7F08007C - public const int fill_vertical = 2131230844; + public const int expanded_menu = 2131230844; - // aapt resource value: 0x7F08007E - public const int @fixed = 2131230846; + // aapt resource value: 0x7F08007B + public const int expand_activities_button = 2131230843; - // aapt resource value: 0x7F08007F - public const int flyoutcontent_appbar = 2131230847; + // aapt resource value: 0x7F08007D + public const int fill = 2131230845; // aapt resource value: 0x7F080080 - public const int flyoutcontent_recycler = 2131230848; + public const int filled = 2131230848; + + // aapt resource value: 0x7F08007E + public const int fill_horizontal = 2131230846; + + // aapt resource value: 0x7F08007F + public const int fill_vertical = 2131230847; // aapt resource value: 0x7F080081 - public const int forever = 2131230849; + public const int @fixed = 2131230849; + + // aapt resource value: 0x7F080082 + public const int flyoutcontent_appbar = 2131230850; + + // aapt resource value: 0x7F080083 + public const int flyoutcontent_recycler = 2131230851; + + // aapt resource value: 0x7F080084 + public const int forever = 2131230852; // aapt resource value: 0x7F080009 public const int FUNCTION = 2131230729; @@ -9345,647 +9351,659 @@ namespace Klient.Droid // aapt resource value: 0x7F08000A public const int GetHistory = 2131230730; - // aapt resource value: 0x7F080082 - public const int ghost_view = 2131230850; - - // aapt resource value: 0x7F080083 - public const int group_divider = 2131230851; - - // aapt resource value: 0x7F080084 - public const int helpPhoto = 2131230852; - // aapt resource value: 0x7F080085 - public const int helpRegister = 2131230853; + public const int ghost_view = 2131230853; // aapt resource value: 0x7F080086 - public const int history = 2131230854; - - // aapt resource value: 0x7F08000B - public const int HistoryTitle = 2131230731; + public const int group_divider = 2131230854; // aapt resource value: 0x7F080087 - public const int home = 2131230855; + public const int helpPhoto = 2131230855; // aapt resource value: 0x7F080088 - public const int homeAsUp = 2131230856; + public const int helpRegister = 2131230856; // aapt resource value: 0x7F080089 - public const int icon = 2131230857; + public const int history = 2131230857; - // aapt resource value: 0x7F08008A - public const int icon_group = 2131230858; - - // aapt resource value: 0x7F08008B - public const int ifRoom = 2131230859; - - // aapt resource value: 0x7F08008C - public const int image = 2131230860; + // aapt resource value: 0x7F08000B + public const int HistoryError = 2131230731; // aapt resource value: 0x7F08000C - public const int In = 2131230732; + public const int HistoryTitle = 2131230732; + + // aapt resource value: 0x7F08008A + public const int home = 2131230858; + + // aapt resource value: 0x7F08008B + public const int homeAsUp = 2131230859; + + // aapt resource value: 0x7F08008C + public const int icon = 2131230860; // aapt resource value: 0x7F08008D - public const int info = 2131230861; + public const int icon_group = 2131230861; // aapt resource value: 0x7F08008E - public const int italic = 2131230862; + public const int ifRoom = 2131230862; // aapt resource value: 0x7F08008F - public const int item_touch_helper_previous_elevation = 2131230863; - - // aapt resource value: 0x7F080090 - public const int labeled = 2131230864; - - // aapt resource value: 0x7F080091 - public const int largeLabel = 2131230865; + public const int image = 2131230863; // aapt resource value: 0x7F08000D - public const int LayoutEmail = 2131230733; + public const int In = 2131230733; - // aapt resource value: 0x7F08000E - public const int LayoutEmailC = 2131230734; + // aapt resource value: 0x7F080090 + public const int info = 2131230864; - // aapt resource value: 0x7F08000F - public const int LayoutLogin = 2131230735; - - // aapt resource value: 0x7F080010 - public const int LayoutName = 2131230736; - - // aapt resource value: 0x7F080011 - public const int LayoutNameC = 2131230737; - - // aapt resource value: 0x7F080012 - public const int LayoutNewLogin = 2131230738; - - // aapt resource value: 0x7F080013 - public const int LayoutNewPassword1 = 2131230739; - - // aapt resource value: 0x7F080014 - public const int LayoutNewPassword2 = 2131230740; - - // aapt resource value: 0x7F080015 - public const int LayoutPassword = 2131230741; - - // aapt resource value: 0x7F080016 - public const int LayoutSurname = 2131230742; - - // aapt resource value: 0x7F080017 - public const int LayoutSurnameC = 2131230743; + // aapt resource value: 0x7F080091 + public const int italic = 2131230865; // aapt resource value: 0x7F080092 - public const int left = 2131230866; + public const int item_touch_helper_previous_elevation = 2131230866; // aapt resource value: 0x7F080093 - public const int line1 = 2131230867; + public const int labeled = 2131230867; // aapt resource value: 0x7F080094 - public const int line3 = 2131230868; + public const int largeLabel = 2131230868; - // aapt resource value: 0x7F080096 - public const int links = 2131230870; + // aapt resource value: 0x7F08000E + public const int LayoutEmail = 2131230734; - // aapt resource value: 0x7F080095 - public const int linkTitle = 2131230869; + // aapt resource value: 0x7F08000F + public const int LayoutEmailC = 2131230735; - // aapt resource value: 0x7F080097 - public const int listMode = 2131230871; + // aapt resource value: 0x7F080010 + public const int LayoutLogin = 2131230736; - // aapt resource value: 0x7F080098 - public const int list_item = 2131230872; + // aapt resource value: 0x7F080011 + public const int LayoutName = 2131230737; + + // aapt resource value: 0x7F080012 + public const int LayoutNameC = 2131230738; + + // aapt resource value: 0x7F080013 + public const int LayoutNewLogin = 2131230739; + + // aapt resource value: 0x7F080014 + public const int LayoutNewPassword1 = 2131230740; + + // aapt resource value: 0x7F080015 + public const int LayoutNewPassword2 = 2131230741; + + // aapt resource value: 0x7F080016 + public const int LayoutPassword = 2131230742; + + // aapt resource value: 0x7F080017 + public const int LayoutSurname = 2131230743; // aapt resource value: 0x7F080018 - public const int LoadFromCamera = 2131230744; + public const int LayoutSurnameC = 2131230744; + + // aapt resource value: 0x7F080095 + public const int left = 2131230869; + + // aapt resource value: 0x7F080096 + public const int line1 = 2131230870; + + // aapt resource value: 0x7F080097 + public const int line3 = 2131230871; // aapt resource value: 0x7F080019 - public const int LoadFromFolder = 2131230745; - - // aapt resource value: 0x7F08001A - public const int Login = 2131230746; + public const int LinkError = 2131230745; // aapt resource value: 0x7F080099 - public const int main_appbar = 2131230873; + public const int links = 2131230873; + + // aapt resource value: 0x7F080098 + public const int linkTitle = 2131230872; // aapt resource value: 0x7F08009A - public const int main_tablayout = 2131230874; + public const int listMode = 2131230874; // aapt resource value: 0x7F08009B - public const int main_toolbar = 2131230875; + public const int list_item = 2131230875; - // aapt resource value: 0x7F08009C - public const int main_viewpager = 2131230876; - - // aapt resource value: 0x7F08009D - public const int masked = 2131230877; - - // aapt resource value: 0x7F08009E - public const int media_actions = 2131230878; - - // aapt resource value: 0x7F08009F - public const int message = 2131230879; + // aapt resource value: 0x7F08001A + public const int LoadFromCamera = 2131230746; // aapt resource value: 0x7F08001B - public const int META = 2131230747; - - // aapt resource value: 0x7F0800A0 - public const int middle = 2131230880; - - // aapt resource value: 0x7F0800A1 - public const int mini = 2131230881; - - // aapt resource value: 0x7F0800A2 - public const int mr_art = 2131230882; - - // aapt resource value: 0x7F0800A3 - public const int mr_cast_checkbox = 2131230883; - - // aapt resource value: 0x7F0800A4 - public const int mr_cast_close_button = 2131230884; - - // aapt resource value: 0x7F0800A5 - public const int mr_cast_group_icon = 2131230885; - - // aapt resource value: 0x7F0800A6 - public const int mr_cast_group_name = 2131230886; - - // aapt resource value: 0x7F0800A7 - public const int mr_cast_list = 2131230887; - - // aapt resource value: 0x7F0800A8 - public const int mr_cast_meta = 2131230888; - - // aapt resource value: 0x7F0800A9 - public const int mr_cast_meta_art = 2131230889; - - // aapt resource value: 0x7F0800AA - public const int mr_cast_meta_subtitle = 2131230890; - - // aapt resource value: 0x7F0800AB - public const int mr_cast_meta_title = 2131230891; - - // aapt resource value: 0x7F0800AC - public const int mr_cast_route_icon = 2131230892; - - // aapt resource value: 0x7F0800AD - public const int mr_cast_route_name = 2131230893; - - // aapt resource value: 0x7F0800AE - public const int mr_cast_stop_button = 2131230894; - - // aapt resource value: 0x7F0800AF - public const int mr_cast_volume_layout = 2131230895; - - // aapt resource value: 0x7F0800B0 - public const int mr_cast_volume_slider = 2131230896; - - // aapt resource value: 0x7F0800B1 - public const int mr_chooser_list = 2131230897; - - // aapt resource value: 0x7F0800B2 - public const int mr_chooser_route_desc = 2131230898; - - // aapt resource value: 0x7F0800B3 - public const int mr_chooser_route_icon = 2131230899; - - // aapt resource value: 0x7F0800B4 - public const int mr_chooser_route_name = 2131230900; - - // aapt resource value: 0x7F0800B5 - public const int mr_chooser_title = 2131230901; - - // aapt resource value: 0x7F0800B6 - public const int mr_close = 2131230902; - - // aapt resource value: 0x7F0800B7 - public const int mr_control_divider = 2131230903; - - // aapt resource value: 0x7F0800B8 - public const int mr_control_playback_ctrl = 2131230904; - - // aapt resource value: 0x7F0800B9 - public const int mr_control_subtitle = 2131230905; - - // aapt resource value: 0x7F0800BA - public const int mr_control_title = 2131230906; - - // aapt resource value: 0x7F0800BB - public const int mr_control_title_container = 2131230907; - - // aapt resource value: 0x7F0800BC - public const int mr_custom_control = 2131230908; - - // aapt resource value: 0x7F0800BD - public const int mr_default_control = 2131230909; - - // aapt resource value: 0x7F0800BE - public const int mr_dialog_area = 2131230910; - - // aapt resource value: 0x7F0800BF - public const int mr_dialog_header_name = 2131230911; - - // aapt resource value: 0x7F0800C0 - public const int mr_expandable_area = 2131230912; - - // aapt resource value: 0x7F0800C1 - public const int mr_group_expand_collapse = 2131230913; - - // aapt resource value: 0x7F0800C2 - public const int mr_group_volume_route_name = 2131230914; - - // aapt resource value: 0x7F0800C3 - public const int mr_group_volume_slider = 2131230915; - - // aapt resource value: 0x7F0800C4 - public const int mr_media_main_control = 2131230916; - - // aapt resource value: 0x7F0800C5 - public const int mr_name = 2131230917; - - // aapt resource value: 0x7F0800C6 - public const int mr_picker_close_button = 2131230918; - - // aapt resource value: 0x7F0800C7 - public const int mr_picker_list = 2131230919; - - // aapt resource value: 0x7F0800C8 - public const int mr_picker_route_icon = 2131230920; - - // aapt resource value: 0x7F0800C9 - public const int mr_picker_route_name = 2131230921; - - // aapt resource value: 0x7F0800CA - public const int mr_playback_control = 2131230922; - - // aapt resource value: 0x7F0800CB - public const int mr_title_bar = 2131230923; - - // aapt resource value: 0x7F0800CC - public const int mr_volume_control = 2131230924; - - // aapt resource value: 0x7F0800CD - public const int mr_volume_group_list = 2131230925; - - // aapt resource value: 0x7F0800CE - public const int mr_volume_item_icon = 2131230926; - - // aapt resource value: 0x7F0800CF - public const int mr_volume_slider = 2131230927; - - // aapt resource value: 0x7F0800D0 - public const int mtrl_child_content_container = 2131230928; - - // aapt resource value: 0x7F0800D1 - public const int mtrl_internal_children_alpha_tag = 2131230929; - - // aapt resource value: 0x7F0800D2 - public const int multiply = 2131230930; + public const int LoadFromFolder = 2131230747; // aapt resource value: 0x7F08001C - public const int Name = 2131230748; + public const int Login = 2131230748; - // aapt resource value: 0x7F0800D3 - public const int navigation_header_container = 2131230931; + // aapt resource value: 0x7F08009C + public const int loginTip = 2131230876; - // aapt resource value: 0x7F0800D4 - public const int never = 2131230932; + // aapt resource value: 0x7F08009D + public const int main_appbar = 2131230877; + + // aapt resource value: 0x7F08009E + public const int main_tablayout = 2131230878; + + // aapt resource value: 0x7F08009F + public const int main_toolbar = 2131230879; + + // aapt resource value: 0x7F0800A0 + public const int main_viewpager = 2131230880; + + // aapt resource value: 0x7F0800A1 + public const int masked = 2131230881; + + // aapt resource value: 0x7F0800A2 + public const int media_actions = 2131230882; + + // aapt resource value: 0x7F0800A3 + public const int message = 2131230883; // aapt resource value: 0x7F08001D - public const int NewLogin = 2131230749; + public const int META = 2131230749; - // aapt resource value: 0x7F08001E - public const int NewPassword = 2131230750; + // aapt resource value: 0x7F0800A4 + public const int middle = 2131230884; + + // aapt resource value: 0x7F0800A5 + public const int mini = 2131230885; + + // aapt resource value: 0x7F0800A6 + public const int mr_art = 2131230886; + + // aapt resource value: 0x7F0800A7 + public const int mr_cast_checkbox = 2131230887; + + // aapt resource value: 0x7F0800A8 + public const int mr_cast_close_button = 2131230888; + + // aapt resource value: 0x7F0800A9 + public const int mr_cast_group_icon = 2131230889; + + // aapt resource value: 0x7F0800AA + public const int mr_cast_group_name = 2131230890; + + // aapt resource value: 0x7F0800AB + public const int mr_cast_list = 2131230891; + + // aapt resource value: 0x7F0800AC + public const int mr_cast_meta = 2131230892; + + // aapt resource value: 0x7F0800AD + public const int mr_cast_meta_art = 2131230893; + + // aapt resource value: 0x7F0800AE + public const int mr_cast_meta_subtitle = 2131230894; + + // aapt resource value: 0x7F0800AF + public const int mr_cast_meta_title = 2131230895; + + // aapt resource value: 0x7F0800B0 + public const int mr_cast_route_icon = 2131230896; + + // aapt resource value: 0x7F0800B1 + public const int mr_cast_route_name = 2131230897; + + // aapt resource value: 0x7F0800B2 + public const int mr_cast_stop_button = 2131230898; + + // aapt resource value: 0x7F0800B3 + public const int mr_cast_volume_layout = 2131230899; + + // aapt resource value: 0x7F0800B4 + public const int mr_cast_volume_slider = 2131230900; + + // aapt resource value: 0x7F0800B5 + public const int mr_chooser_list = 2131230901; + + // aapt resource value: 0x7F0800B6 + public const int mr_chooser_route_desc = 2131230902; + + // aapt resource value: 0x7F0800B7 + public const int mr_chooser_route_icon = 2131230903; + + // aapt resource value: 0x7F0800B8 + public const int mr_chooser_route_name = 2131230904; + + // aapt resource value: 0x7F0800B9 + public const int mr_chooser_title = 2131230905; + + // aapt resource value: 0x7F0800BA + public const int mr_close = 2131230906; + + // aapt resource value: 0x7F0800BB + public const int mr_control_divider = 2131230907; + + // aapt resource value: 0x7F0800BC + public const int mr_control_playback_ctrl = 2131230908; + + // aapt resource value: 0x7F0800BD + public const int mr_control_subtitle = 2131230909; + + // aapt resource value: 0x7F0800BE + public const int mr_control_title = 2131230910; + + // aapt resource value: 0x7F0800BF + public const int mr_control_title_container = 2131230911; + + // aapt resource value: 0x7F0800C0 + public const int mr_custom_control = 2131230912; + + // aapt resource value: 0x7F0800C1 + public const int mr_default_control = 2131230913; + + // aapt resource value: 0x7F0800C2 + public const int mr_dialog_area = 2131230914; + + // aapt resource value: 0x7F0800C3 + public const int mr_dialog_header_name = 2131230915; + + // aapt resource value: 0x7F0800C4 + public const int mr_expandable_area = 2131230916; + + // aapt resource value: 0x7F0800C5 + public const int mr_group_expand_collapse = 2131230917; + + // aapt resource value: 0x7F0800C6 + public const int mr_group_volume_route_name = 2131230918; + + // aapt resource value: 0x7F0800C7 + public const int mr_group_volume_slider = 2131230919; + + // aapt resource value: 0x7F0800C8 + public const int mr_media_main_control = 2131230920; + + // aapt resource value: 0x7F0800C9 + public const int mr_name = 2131230921; + + // aapt resource value: 0x7F0800CA + public const int mr_picker_close_button = 2131230922; + + // aapt resource value: 0x7F0800CB + public const int mr_picker_list = 2131230923; + + // aapt resource value: 0x7F0800CC + public const int mr_picker_route_icon = 2131230924; + + // aapt resource value: 0x7F0800CD + public const int mr_picker_route_name = 2131230925; + + // aapt resource value: 0x7F0800CE + public const int mr_playback_control = 2131230926; + + // aapt resource value: 0x7F0800CF + public const int mr_title_bar = 2131230927; + + // aapt resource value: 0x7F0800D0 + public const int mr_volume_control = 2131230928; + + // aapt resource value: 0x7F0800D1 + public const int mr_volume_group_list = 2131230929; + + // aapt resource value: 0x7F0800D2 + public const int mr_volume_item_icon = 2131230930; + + // aapt resource value: 0x7F0800D3 + public const int mr_volume_slider = 2131230931; + + // aapt resource value: 0x7F0800D4 + public const int mtrl_child_content_container = 2131230932; // aapt resource value: 0x7F0800D5 - public const int none = 2131230933; + public const int mtrl_internal_children_alpha_tag = 2131230933; // aapt resource value: 0x7F0800D6 - public const int normal = 2131230934; + public const int multiply = 2131230934; + + // aapt resource value: 0x7F08001E + public const int Name = 2131230750; // aapt resource value: 0x7F0800D7 - public const int notification_background = 2131230935; + public const int navigation_header_container = 2131230935; // aapt resource value: 0x7F0800D8 - public const int notification_main_column = 2131230936; - - // aapt resource value: 0x7F0800D9 - public const int notification_main_column_container = 2131230937; + public const int never = 2131230936; // aapt resource value: 0x7F08001F - public const int NullValueProfile = 2131230751; - - // aapt resource value: 0x7F0800DA - public const int outline = 2131230938; - - // aapt resource value: 0x7F0800DB - public const int parallax = 2131230939; - - // aapt resource value: 0x7F0800DC - public const int parentPanel = 2131230940; - - // aapt resource value: 0x7F0800DD - public const int parent_matrix = 2131230941; + public const int NewLogin = 2131230751; // aapt resource value: 0x7F080020 - public const int Password = 2131230752; + public const int NewPassword = 2131230752; - // aapt resource value: 0x7F0800DE - public const int pin = 2131230942; + // aapt resource value: 0x7F0800D9 + public const int none = 2131230937; + + // aapt resource value: 0x7F0800DA + public const int normal = 2131230938; + + // aapt resource value: 0x7F0800DB + public const int notification_background = 2131230939; + + // aapt resource value: 0x7F0800DC + public const int notification_main_column = 2131230940; + + // aapt resource value: 0x7F0800DD + public const int notification_main_column_container = 2131230941; // aapt resource value: 0x7F080021 - public const int Preview = 2131230753; + public const int NullValueProfile = 2131230753; - // aapt resource value: 0x7F080023 - public const int Profile = 2131230755; - - // aapt resource value: 0x7F080022 - public const int ProfilPageLogin = 2131230754; + // aapt resource value: 0x7F0800DE + public const int outline = 2131230942; // aapt resource value: 0x7F0800DF - public const int progress_circular = 2131230943; + public const int parallax = 2131230943; // aapt resource value: 0x7F0800E0 - public const int progress_horizontal = 2131230944; + public const int parentPanel = 2131230944; // aapt resource value: 0x7F0800E1 - public const int radio = 2131230945; + public const int parent_matrix = 2131230945; - // aapt resource value: 0x7F080024 - public const int RepeatPassword = 2131230756; + // aapt resource value: 0x7F080022 + public const int Password = 2131230754; // aapt resource value: 0x7F0800E2 - public const int right = 2131230946; + public const int passwordTip = 2131230946; // aapt resource value: 0x7F0800E3 - public const int right_icon = 2131230947; + public const int pin = 2131230947; - // aapt resource value: 0x7F0800E4 - public const int right_side = 2131230948; - - // aapt resource value: 0x7F080027 - public const int Save = 2131230759; - - // aapt resource value: 0x7F0800E5 - public const int save_image_matrix = 2131230949; - - // aapt resource value: 0x7F0800E6 - public const int save_non_transition_alpha = 2131230950; - - // aapt resource value: 0x7F0800E7 - public const int save_scale_type = 2131230951; - - // aapt resource value: 0x7F0800E8 - public const int screen = 2131230952; - - // aapt resource value: 0x7F0800E9 - public const int scroll = 2131230953; - - // aapt resource value: 0x7F0800ED - public const int scrollable = 2131230957; - - // aapt resource value: 0x7F0800EA - public const int scrollIndicatorDown = 2131230954; - - // aapt resource value: 0x7F0800EB - public const int scrollIndicatorUp = 2131230955; - - // aapt resource value: 0x7F0800EC - public const int scrollView = 2131230956; - - // aapt resource value: 0x7F0800EE - public const int search_badge = 2131230958; - - // aapt resource value: 0x7F0800EF - public const int search_bar = 2131230959; - - // aapt resource value: 0x7F0800F0 - public const int search_button = 2131230960; - - // aapt resource value: 0x7F0800F1 - public const int search_close_btn = 2131230961; - - // aapt resource value: 0x7F0800F2 - public const int search_edit_frame = 2131230962; - - // aapt resource value: 0x7F0800F3 - public const int search_go_btn = 2131230963; - - // aapt resource value: 0x7F0800F4 - public const int search_mag_icon = 2131230964; - - // aapt resource value: 0x7F0800F5 - public const int search_plate = 2131230965; - - // aapt resource value: 0x7F0800F6 - public const int search_src_text = 2131230966; - - // aapt resource value: 0x7F0800F7 - public const int search_voice_btn = 2131230967; - - // aapt resource value: 0x7F0800F9 - public const int selected = 2131230969; - - // aapt resource value: 0x7F0800F8 - public const int select_dialog_listview = 2131230968; - - // aapt resource value: 0x7F080028 - public const int SendPhoto = 2131230760; - - // aapt resource value: 0x7F0800FA - public const int shellcontent_appbar = 2131230970; - - // aapt resource value: 0x7F0800FB - public const int shellcontent_toolbar = 2131230971; + // aapt resource value: 0x7F080023 + public const int Preview = 2131230755; // aapt resource value: 0x7F080025 - public const int SHIFT = 2131230757; + public const int Profile = 2131230757; - // aapt resource value: 0x7F0800FC - public const int shortcut = 2131230972; + // aapt resource value: 0x7F080024 + public const int ProfilPageLogin = 2131230756; - // aapt resource value: 0x7F0800FD - public const int showCustom = 2131230973; + // aapt resource value: 0x7F0800E4 + public const int progress_circular = 2131230948; - // aapt resource value: 0x7F0800FE - public const int showHome = 2131230974; + // aapt resource value: 0x7F0800E5 + public const int progress_horizontal = 2131230949; - // aapt resource value: 0x7F0800FF - public const int showTitle = 2131230975; - - // aapt resource value: 0x7F080029 - public const int SignInMainScreen = 2131230761; - - // aapt resource value: 0x7F08002A - public const int SignUp = 2131230762; - - // aapt resource value: 0x7F08002B - public const int SignUpMainScreen = 2131230763; - - // aapt resource value: 0x7F080100 - public const int smallLabel = 2131230976; - - // aapt resource value: 0x7F080101 - public const int snackbar_action = 2131230977; - - // aapt resource value: 0x7F080102 - public const int snackbar_text = 2131230978; - - // aapt resource value: 0x7F080103 - public const int snap = 2131230979; - - // aapt resource value: 0x7F080104 - public const int snapMargins = 2131230980; - - // aapt resource value: 0x7F080105 - public const int spacer = 2131230981; - - // aapt resource value: 0x7F080106 - public const int split_action_bar = 2131230982; - - // aapt resource value: 0x7F080107 - public const int src_atop = 2131230983; - - // aapt resource value: 0x7F080108 - public const int src_in = 2131230984; - - // aapt resource value: 0x7F080109 - public const int src_over = 2131230985; - - // aapt resource value: 0x7F08010A - public const int start = 2131230986; - - // aapt resource value: 0x7F08010B - public const int status_bar_latest_event_content = 2131230987; - - // aapt resource value: 0x7F08010C - public const int stretch = 2131230988; - - // aapt resource value: 0x7F08010D - public const int submenuarrow = 2131230989; - - // aapt resource value: 0x7F08010E - public const int submit_area = 2131230990; - - // aapt resource value: 0x7F08002C - public const int Surname = 2131230764; + // aapt resource value: 0x7F0800E6 + public const int radio = 2131230950; // aapt resource value: 0x7F080026 - public const int SYM = 2131230758; + public const int RepeatPassword = 2131230758; + + // aapt resource value: 0x7F0800E7 + public const int right = 2131230951; + + // aapt resource value: 0x7F0800E8 + public const int right_icon = 2131230952; + + // aapt resource value: 0x7F0800E9 + public const int right_side = 2131230953; + + // aapt resource value: 0x7F080029 + public const int Save = 2131230761; + + // aapt resource value: 0x7F0800EA + public const int save_image_matrix = 2131230954; + + // aapt resource value: 0x7F0800EB + public const int save_non_transition_alpha = 2131230955; + + // aapt resource value: 0x7F0800EC + public const int save_scale_type = 2131230956; + + // aapt resource value: 0x7F0800ED + public const int screen = 2131230957; + + // aapt resource value: 0x7F0800EE + public const int scroll = 2131230958; + + // aapt resource value: 0x7F0800F2 + public const int scrollable = 2131230962; + + // aapt resource value: 0x7F0800EF + public const int scrollIndicatorDown = 2131230959; + + // aapt resource value: 0x7F0800F0 + public const int scrollIndicatorUp = 2131230960; + + // aapt resource value: 0x7F0800F1 + public const int scrollView = 2131230961; + + // aapt resource value: 0x7F0800F3 + public const int search_badge = 2131230963; + + // aapt resource value: 0x7F0800F4 + public const int search_bar = 2131230964; + + // aapt resource value: 0x7F0800F5 + public const int search_button = 2131230965; + + // aapt resource value: 0x7F0800F6 + public const int search_close_btn = 2131230966; + + // aapt resource value: 0x7F0800F7 + public const int search_edit_frame = 2131230967; + + // aapt resource value: 0x7F0800F8 + public const int search_go_btn = 2131230968; + + // aapt resource value: 0x7F0800F9 + public const int search_mag_icon = 2131230969; + + // aapt resource value: 0x7F0800FA + public const int search_plate = 2131230970; + + // aapt resource value: 0x7F0800FB + public const int search_src_text = 2131230971; + + // aapt resource value: 0x7F0800FC + public const int search_voice_btn = 2131230972; + + // aapt resource value: 0x7F0800FE + public const int selected = 2131230974; + + // aapt resource value: 0x7F0800FD + public const int select_dialog_listview = 2131230973; + + // aapt resource value: 0x7F08002A + public const int SendPhoto = 2131230762; + + // aapt resource value: 0x7F0800FF + public const int shellcontent_appbar = 2131230975; + + // aapt resource value: 0x7F080100 + public const int shellcontent_toolbar = 2131230976; + + // aapt resource value: 0x7F080027 + public const int SHIFT = 2131230759; + + // aapt resource value: 0x7F080101 + public const int shortcut = 2131230977; + + // aapt resource value: 0x7F080102 + public const int showCustom = 2131230978; + + // aapt resource value: 0x7F080103 + public const int showHome = 2131230979; + + // aapt resource value: 0x7F080104 + public const int showTitle = 2131230980; + + // aapt resource value: 0x7F08002B + public const int SignInMainScreen = 2131230763; + + // aapt resource value: 0x7F08002C + public const int SignUp = 2131230764; + + // aapt resource value: 0x7F08002D + public const int SignUpMainScreen = 2131230765; + + // aapt resource value: 0x7F080105 + public const int smallLabel = 2131230981; + + // aapt resource value: 0x7F080106 + public const int snackbar_action = 2131230982; + + // aapt resource value: 0x7F080107 + public const int snackbar_text = 2131230983; + + // aapt resource value: 0x7F080108 + public const int snap = 2131230984; + + // aapt resource value: 0x7F080109 + public const int snapMargins = 2131230985; + + // aapt resource value: 0x7F08010A + public const int spacer = 2131230986; + + // aapt resource value: 0x7F08010B + public const int split_action_bar = 2131230987; + + // aapt resource value: 0x7F08010C + public const int src_atop = 2131230988; + + // aapt resource value: 0x7F08010D + public const int src_in = 2131230989; + + // aapt resource value: 0x7F08010E + public const int src_over = 2131230990; // aapt resource value: 0x7F08010F - public const int tabMode = 2131230991; + public const int start = 2131230991; // aapt resource value: 0x7F080110 - public const int tag_transition_group = 2131230992; + public const int status_bar_latest_event_content = 2131230992; // aapt resource value: 0x7F080111 - public const int tag_unhandled_key_event_manager = 2131230993; + public const int stretch = 2131230993; // aapt resource value: 0x7F080112 - public const int tag_unhandled_key_listeners = 2131230994; + public const int submenuarrow = 2131230994; // aapt resource value: 0x7F080113 - public const int text = 2131230995; + public const int submit_area = 2131230995; + + // aapt resource value: 0x7F08002E + public const int Surname = 2131230766; + + // aapt resource value: 0x7F080028 + public const int SYM = 2131230760; // aapt resource value: 0x7F080114 - public const int text1 = 2131230996; + public const int tabMode = 2131230996; // aapt resource value: 0x7F080115 - public const int text2 = 2131230997; + public const int tag_transition_group = 2131230997; // aapt resource value: 0x7F080116 - public const int text3 = 2131230998; + public const int tag_unhandled_key_event_manager = 2131230998; // aapt resource value: 0x7F080117 - public const int text4 = 2131230999; + public const int tag_unhandled_key_listeners = 2131230999; // aapt resource value: 0x7F080118 - public const int text5 = 2131231000; - - // aapt resource value: 0x7F08011E - public const int textinput_counter = 2131231006; - - // aapt resource value: 0x7F08011F - public const int textinput_error = 2131231007; - - // aapt resource value: 0x7F080120 - public const int textinput_helper_text = 2131231008; + public const int text = 2131231000; // aapt resource value: 0x7F080119 - public const int textSpacerNoButtons = 2131231001; + public const int text1 = 2131231001; // aapt resource value: 0x7F08011A - public const int textSpacerNoTitle = 2131231002; + public const int text2 = 2131231002; // aapt resource value: 0x7F08011B - public const int textStart = 2131231003; + public const int text3 = 2131231003; // aapt resource value: 0x7F08011C - public const int textView1 = 2131231004; + public const int text4 = 2131231004; // aapt resource value: 0x7F08011D - public const int text_input_password_toggle = 2131231005; - - // aapt resource value: 0x7F080121 - public const int time = 2131231009; - - // aapt resource value: 0x7F080122 - public const int title = 2131231010; + public const int text5 = 2131231005; // aapt resource value: 0x7F080123 - public const int titleDividerNoCustom = 2131231011; + public const int textinput_counter = 2131231011; // aapt resource value: 0x7F080124 - public const int title_template = 2131231012; + public const int textinput_error = 2131231012; // aapt resource value: 0x7F080125 - public const int top = 2131231013; + public const int textinput_helper_text = 2131231013; + + // aapt resource value: 0x7F08011E + public const int textSpacerNoButtons = 2131231006; + + // aapt resource value: 0x7F08011F + public const int textSpacerNoTitle = 2131231007; + + // aapt resource value: 0x7F080120 + public const int textStart = 2131231008; + + // aapt resource value: 0x7F080121 + public const int textView1 = 2131231009; + + // aapt resource value: 0x7F080122 + public const int text_input_password_toggle = 2131231010; // aapt resource value: 0x7F080126 - public const int topPanel = 2131231014; + public const int time = 2131231014; // aapt resource value: 0x7F080127 - public const int touch_outside = 2131231015; + public const int title = 2131231015; // aapt resource value: 0x7F080128 - public const int transition_current_scene = 2131231016; + public const int titleDividerNoCustom = 2131231016; // aapt resource value: 0x7F080129 - public const int transition_layout_save = 2131231017; + public const int title_template = 2131231017; // aapt resource value: 0x7F08012A - public const int transition_position = 2131231018; + public const int top = 2131231018; // aapt resource value: 0x7F08012B - public const int transition_scene_layoutid_cache = 2131231019; + public const int topPanel = 2131231019; // aapt resource value: 0x7F08012C - public const int transition_transform = 2131231020; + public const int touch_outside = 2131231020; // aapt resource value: 0x7F08012D - public const int uniform = 2131231021; + public const int transition_current_scene = 2131231021; // aapt resource value: 0x7F08012E - public const int unlabeled = 2131231022; + public const int transition_layout_save = 2131231022; // aapt resource value: 0x7F08012F - public const int up = 2131231023; + public const int transition_position = 2131231023; // aapt resource value: 0x7F080130 - public const int useLogo = 2131231024; + public const int transition_scene_layoutid_cache = 2131231024; // aapt resource value: 0x7F080131 - public const int view_offset_helper = 2131231025; + public const int transition_transform = 2131231025; // aapt resource value: 0x7F080132 - public const int visible = 2131231026; + public const int uniform = 2131231026; // aapt resource value: 0x7F080133 - public const int volume_item_container = 2131231027; + public const int unlabeled = 2131231027; // aapt resource value: 0x7F080134 - public const int withText = 2131231028; + public const int up = 2131231028; // aapt resource value: 0x7F080135 - public const int wrap_content = 2131231029; + public const int useLogo = 2131231029; + + // aapt resource value: 0x7F080136 + public const int view_offset_helper = 2131231030; + + // aapt resource value: 0x7F080137 + public const int visible = 2131231031; + + // aapt resource value: 0x7F080138 + public const int volume_item_container = 2131231032; + + // aapt resource value: 0x7F080139 + public const int withText = 2131231033; + + // aapt resource value: 0x7F08013A + public const int wrap_content = 2131231034; static Id() { @@ -10249,136 +10267,139 @@ namespace Klient.Droid public const int ekranPoLogowaniu = 2131427376; // aapt resource value: 0x7F0B0031 - public const int ekranPomocZdjecie = 2131427377; + public const int ekranPomocRejestracja = 2131427377; // aapt resource value: 0x7F0B0032 - public const int ekranPoZdjeciu = 2131427378; + public const int ekranPomocZdjecie = 2131427378; // aapt resource value: 0x7F0B0033 - public const int ekranProfil = 2131427379; + public const int ekranPoZdjeciu = 2131427379; // aapt resource value: 0x7F0B0034 - public const int ekranRejestracji = 2131427380; + public const int ekranProfil = 2131427380; // aapt resource value: 0x7F0B0035 - public const int ekranStartowy = 2131427381; + public const int ekranRejestracji = 2131427381; // aapt resource value: 0x7F0B0036 - public const int ekranZLinkami = 2131427382; + public const int ekranStartowy = 2131427382; // aapt resource value: 0x7F0B0037 - public const int FlyoutContent = 2131427383; + public const int ekranZLinkami = 2131427383; // aapt resource value: 0x7F0B0038 - public const int mr_cast_dialog = 2131427384; + public const int FlyoutContent = 2131427384; // aapt resource value: 0x7F0B0039 - public const int mr_cast_group_item = 2131427385; + public const int mr_cast_dialog = 2131427385; // aapt resource value: 0x7F0B003A - public const int mr_cast_group_volume_item = 2131427386; + public const int mr_cast_group_item = 2131427386; // aapt resource value: 0x7F0B003B - public const int mr_cast_media_metadata = 2131427387; + public const int mr_cast_group_volume_item = 2131427387; // aapt resource value: 0x7F0B003C - public const int mr_cast_route_item = 2131427388; + public const int mr_cast_media_metadata = 2131427388; // aapt resource value: 0x7F0B003D - public const int mr_chooser_dialog = 2131427389; + public const int mr_cast_route_item = 2131427389; // aapt resource value: 0x7F0B003E - public const int mr_chooser_list_item = 2131427390; + public const int mr_chooser_dialog = 2131427390; // aapt resource value: 0x7F0B003F - public const int mr_controller_material_dialog_b = 2131427391; + public const int mr_chooser_list_item = 2131427391; // aapt resource value: 0x7F0B0040 - public const int mr_controller_volume_item = 2131427392; + public const int mr_controller_material_dialog_b = 2131427392; // aapt resource value: 0x7F0B0041 - public const int mr_dialog_header_item = 2131427393; + public const int mr_controller_volume_item = 2131427393; // aapt resource value: 0x7F0B0042 - public const int mr_picker_dialog = 2131427394; + public const int mr_dialog_header_item = 2131427394; // aapt resource value: 0x7F0B0043 - public const int mr_picker_route_item = 2131427395; + public const int mr_picker_dialog = 2131427395; // aapt resource value: 0x7F0B0044 - public const int mr_playback_control = 2131427396; + public const int mr_picker_route_item = 2131427396; // aapt resource value: 0x7F0B0045 - public const int mr_volume_control = 2131427397; + public const int mr_playback_control = 2131427397; // aapt resource value: 0x7F0B0046 - public const int mtrl_layout_snackbar = 2131427398; + public const int mr_volume_control = 2131427398; // aapt resource value: 0x7F0B0047 - public const int mtrl_layout_snackbar_include = 2131427399; + public const int mtrl_layout_snackbar = 2131427399; // aapt resource value: 0x7F0B0048 - public const int notification_action = 2131427400; + public const int mtrl_layout_snackbar_include = 2131427400; // aapt resource value: 0x7F0B0049 - public const int notification_action_tombstone = 2131427401; + public const int notification_action = 2131427401; // aapt resource value: 0x7F0B004A - public const int notification_media_action = 2131427402; + public const int notification_action_tombstone = 2131427402; // aapt resource value: 0x7F0B004B - public const int notification_media_cancel_action = 2131427403; + public const int notification_media_action = 2131427403; // aapt resource value: 0x7F0B004C - public const int notification_template_big_media = 2131427404; + public const int notification_media_cancel_action = 2131427404; // aapt resource value: 0x7F0B004D - public const int notification_template_big_media_custom = 2131427405; + public const int notification_template_big_media = 2131427405; // aapt resource value: 0x7F0B004E - public const int notification_template_big_media_narrow = 2131427406; + public const int notification_template_big_media_custom = 2131427406; // aapt resource value: 0x7F0B004F - public const int notification_template_big_media_narrow_custom = 2131427407; + public const int notification_template_big_media_narrow = 2131427407; // aapt resource value: 0x7F0B0050 - public const int notification_template_custom_big = 2131427408; + public const int notification_template_big_media_narrow_custom = 2131427408; // aapt resource value: 0x7F0B0051 - public const int notification_template_icon_group = 2131427409; + public const int notification_template_custom_big = 2131427409; // aapt resource value: 0x7F0B0052 - public const int notification_template_lines_media = 2131427410; + public const int notification_template_icon_group = 2131427410; // aapt resource value: 0x7F0B0053 - public const int notification_template_media = 2131427411; + public const int notification_template_lines_media = 2131427411; // aapt resource value: 0x7F0B0054 - public const int notification_template_media_custom = 2131427412; + public const int notification_template_media = 2131427412; // aapt resource value: 0x7F0B0055 - public const int notification_template_part_chronometer = 2131427413; + public const int notification_template_media_custom = 2131427413; // aapt resource value: 0x7F0B0056 - public const int notification_template_part_time = 2131427414; + public const int notification_template_part_chronometer = 2131427414; // aapt resource value: 0x7F0B0057 - public const int RootLayout = 2131427415; + public const int notification_template_part_time = 2131427415; // aapt resource value: 0x7F0B0058 - public const int select_dialog_item_material = 2131427416; + public const int RootLayout = 2131427416; // aapt resource value: 0x7F0B0059 - public const int select_dialog_multichoice_material = 2131427417; + public const int select_dialog_item_material = 2131427417; // aapt resource value: 0x7F0B005A - public const int select_dialog_singlechoice_material = 2131427418; + public const int select_dialog_multichoice_material = 2131427418; // aapt resource value: 0x7F0B005B - public const int ShellContent = 2131427419; + public const int select_dialog_singlechoice_material = 2131427419; // aapt resource value: 0x7F0B005C - public const int support_simple_spinner_dropdown_item = 2131427420; + public const int ShellContent = 2131427420; + + // aapt resource value: 0x7F0B005D + public const int support_simple_spinner_dropdown_item = 2131427421; static Layout() { @@ -15208,7 +15229,10 @@ namespace Klient.Droid { // aapt resource value: 0x7F100000 - public const int xamarin_essentials_fileprovider_file_paths = 2131755008; + public const int file_paths = 2131755008; + + // aapt resource value: 0x7F100001 + public const int xamarin_essentials_fileprovider_file_paths = 2131755009; static Xml() { diff --git a/Klient/Klient/Klient.Android/Resources/drawable/Obraz4.png b/Klient/Klient/Klient.Android/Resources/drawable/Obraz4.png new file mode 100644 index 0000000..debb2c4 Binary files /dev/null and b/Klient/Klient/Klient.Android/Resources/drawable/Obraz4.png differ diff --git a/Klient/Klient/Klient.Android/Resources/layout/ekranHistorii.xml b/Klient/Klient/Klient.Android/Resources/layout/ekranHistorii.xml index 62a2d62..4e41400 100644 --- a/Klient/Klient/Klient.Android/Resources/layout/ekranHistorii.xml +++ b/Klient/Klient/Klient.Android/Resources/layout/ekranHistorii.xml @@ -7,15 +7,14 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffbdd7f0"> -