Javítások, fejlesztések
- Most már mindenképpen elmenti az órarendet és az osztályokat, így nem maradnak nyitva a fájlok - A progress bar pozíciója javítva - A részleteknél is pirossal jelzi a helyettesítéseket - Jobb hibakezelés betöltéskor - Nem jelzi a frissítést, ha gyorsan zajlik le - hasznos, ha a program offline próbál meg frissíteni - Automatikusan frissíti a helyettesítéseket, ha már több, mint egy órája volt frissítve (a háttérben nem) - A mai napot középpontba helyezi - Egyéb
This commit is contained in:
parent
74966f3076
commit
789df17422
4 changed files with 275 additions and 195 deletions
|
@ -1,5 +1,4 @@
|
|||
using HtmlAgilityPack;
|
||||
using Java.Lang;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
|
@ -28,6 +27,8 @@ namespace Orarend
|
|||
/// <param name="osztálystream">A file stream, ahova mentse az adatokat, hogy ne kelljen külön meghívni</param>
|
||||
/// </summary>
|
||||
public static async Task Frissítés(Stream órarendstream, Stream osztálystream, Órarend ór = null)
|
||||
{
|
||||
try
|
||||
{
|
||||
Func<string, Task<HtmlDocument>> load = async (url) =>
|
||||
{
|
||||
|
@ -54,6 +55,8 @@ namespace Orarend
|
|||
{
|
||||
var doc = await load("http://deri.enaplo.net/ajax/orarend/orarendoszt.php?p=" + Uri.EscapeDataString(órarend.Osztály.Azonosító));
|
||||
await Task.Run(() =>
|
||||
{
|
||||
lock (Órarendek)
|
||||
{
|
||||
Osztályok = doc.GetElementbyId("uok").ChildNodes.Where(node => node.HasAttributes).Select(node => new Osztály { Azonosító = node.GetAttributeValue("value", ""), Név = node.NextSibling.InnerText }).ToArray();
|
||||
bool ahét = true;
|
||||
|
@ -81,7 +84,10 @@ namespace Orarend
|
|||
{
|
||||
var csoport = óranode.ChildNodes[j].InnerText.TrimEnd(':');
|
||||
if (csoport != "Egész osztály" && !órarend.Csoportok.Contains(csoport))
|
||||
{
|
||||
órarend.Órák[i][x] = null;
|
||||
continue;
|
||||
}
|
||||
if (óra == null)
|
||||
(ahét ? órarend.ÓrákAHét : órarend.ÓrákBHét)[i][x] = óra = new Óra();
|
||||
óra.Csoportok = new string[] { csoport }; //Az állandó órarendben osztályonként csak egy csoport van egy órán
|
||||
|
@ -100,7 +106,8 @@ namespace Orarend
|
|||
}
|
||||
}
|
||||
}
|
||||
Thread.Sleep(10);
|
||||
Java.Lang.Thread.Sleep(10);
|
||||
}
|
||||
});
|
||||
};
|
||||
if (ór == null)
|
||||
|
@ -108,9 +115,13 @@ namespace Orarend
|
|||
await órarenda(órarend);
|
||||
else
|
||||
await órarenda(ór);
|
||||
}
|
||||
finally
|
||||
{
|
||||
ÓrarendMentés(órarendstream);
|
||||
OsztályMentés(osztálystream);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Frissíti a helyettesítéseket, naponta, indításkor vagy gombnyommásra frissítse (minden nap az első előtérbe kerüléskor)
|
||||
|
@ -120,15 +131,19 @@ namespace Orarend
|
|||
{
|
||||
if (Órarendek.Count == 0 || Osztályok.Length == 0)
|
||||
return;
|
||||
foreach (var órarend in Órarendek)
|
||||
órarend.Helyettesítések.Clear();
|
||||
try
|
||||
{
|
||||
HtmlDocument doc = new HtmlDocument();
|
||||
var req = WebRequest.CreateHttp("http://deri.enaplo.net/ajax/print/htlista.php");
|
||||
var resp = await req.GetResponseAsync();
|
||||
await Task.Run(() =>
|
||||
{
|
||||
lock (Órarendek)
|
||||
{
|
||||
using (var sr = new StreamReader(resp.GetResponseStream()))
|
||||
doc.LoadHtml(sr.ReadToEnd());
|
||||
foreach (var órarend in Órarendek)
|
||||
órarend.Helyettesítések.Clear();
|
||||
foreach (var node in doc.DocumentNode.ChildNodes[2].ChildNodes[1].ChildNodes)
|
||||
{
|
||||
DateTime dátum = DateTime.Parse(node.ChildNodes[0].InnerText.Substring(0, node.ChildNodes[0].InnerText.Length - 4));
|
||||
|
@ -157,11 +172,16 @@ namespace Orarend
|
|||
órarend.Helyettesítések.Add(helyettesítés);
|
||||
}
|
||||
}
|
||||
ÓrarendMentés(s);
|
||||
}
|
||||
});
|
||||
}
|
||||
finally
|
||||
{
|
||||
ÓrarendMentés(s);
|
||||
}
|
||||
}
|
||||
|
||||
private static T betöltés<T>(Stream s)
|
||||
private static T betöltés<T>(Stream s, Action<Exception> hibánál)
|
||||
{
|
||||
using (s)
|
||||
{
|
||||
|
@ -176,9 +196,9 @@ namespace Orarend
|
|||
var serializer = new DataContractJsonSerializer(typeof(T));
|
||||
return (T)serializer.ReadObject(ms);
|
||||
}
|
||||
catch
|
||||
catch (Exception e)
|
||||
{
|
||||
return default(T);
|
||||
hibánál(e);
|
||||
}
|
||||
}
|
||||
return default(T);
|
||||
|
@ -186,19 +206,19 @@ namespace Orarend
|
|||
}
|
||||
}
|
||||
|
||||
public static void ÓrarendBetöltés(Stream s)
|
||||
public static void ÓrarendBetöltés(Stream s, Action<Exception> hibánál)
|
||||
{
|
||||
Órarendek.AddRange(betöltés<Órarend[]>(s) ?? new Órarend[0]);
|
||||
Órarendek.AddRange(betöltés<Órarend[]>(s, hibánál) ?? new Órarend[0]);
|
||||
}
|
||||
|
||||
public static void OsztályBetöltés(Stream s)
|
||||
public static void OsztályBetöltés(Stream s, Action<Exception> hibánál)
|
||||
{
|
||||
Osztályok = betöltés<Osztály[]>(s) ?? new Osztály[0];
|
||||
Osztályok = betöltés<Osztály[]>(s, hibánál) ?? new Osztály[0];
|
||||
}
|
||||
|
||||
public static void BeállításBetöltés(Stream s)
|
||||
public static void BeállításBetöltés(Stream s, Action<Exception> hibánál)
|
||||
{
|
||||
Beállítások = betöltés<Settings>(s);
|
||||
Beállítások = betöltés<Settings>(s, hibánál);
|
||||
} //TODO: Tényleges órarendből állapítsa meg azt is, hogyha egyáltalán nincs ott egy óra, és máshol sincs, és ezt írja ki
|
||||
|
||||
private static void mentés<T>(Stream s, T obj)
|
||||
|
|
|
@ -8,7 +8,6 @@ using Android.OS;
|
|||
using Orarend;
|
||||
using System.Linq;
|
||||
using Android.Graphics;
|
||||
using Java.Lang;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using System.Threading;
|
||||
|
@ -22,6 +21,7 @@ namespace OrarendAndroidApp
|
|||
{
|
||||
private Handler handler;
|
||||
private Órarend órarend;
|
||||
private Timer timer;
|
||||
|
||||
private const int EDIT_ADD_ACT_REQUEST = 1;
|
||||
|
||||
|
@ -34,12 +34,13 @@ namespace OrarendAndroidApp
|
|||
handler = new Handler();
|
||||
string[] list = FileList();
|
||||
if (list.Contains("beallitasok"))
|
||||
API.BeállításBetöltés(OpenFileInput("beallitasok"));
|
||||
API.BeállításBetöltés(OpenFileInput("beallitasok"), e => Hiba("Hiba a beállítások betöltése során!\n" + e));
|
||||
if (list.Contains("orarend") && API.Órarendek.Count == 0)
|
||||
API.ÓrarendBetöltés(OpenFileInput("orarend"));
|
||||
API.ÓrarendBetöltés(OpenFileInput("orarend"), e => Hiba("Hiba az órarendek betöltése során!\n" + e));
|
||||
if (list.Contains("osztaly") && API.Osztályok == null)
|
||||
API.OsztályBetöltés(OpenFileInput("osztaly"));
|
||||
var timer = new Timer(CsengőTimer, null, new TimeSpan(0, 0, 1), new TimeSpan(0, 0, 1));
|
||||
API.OsztályBetöltés(OpenFileInput("osztaly"), e => Hiba("Hiba az osztályok betöltése során!\n" + e));
|
||||
timer = new Timer(CsengőTimer, null, new TimeSpan(0, 0, 1), new TimeSpan(0, 0, 1));
|
||||
frissítésHa1ÓraEltelt();
|
||||
}
|
||||
|
||||
private void órarendlistafrissítés()
|
||||
|
@ -88,35 +89,57 @@ namespace OrarendAndroidApp
|
|||
tr1.AddView(textview);
|
||||
}
|
||||
|
||||
private void HelyettesítésFrissítés()
|
||||
private void HelyettesítésFrissítés(bool internethiba = true)
|
||||
{
|
||||
var bar = FindViewById<ProgressBar>(Resource.Id.progressBar1);
|
||||
handler.Post(() => bar.Visibility = ViewStates.Visible);
|
||||
var menu = FindViewById<ActionMenuView>(Resource.Id.actionMenuView1);
|
||||
Action loadstart = () =>
|
||||
{
|
||||
bar.Visibility = ViewStates.Visible;
|
||||
menu.Enabled = false;
|
||||
};
|
||||
handler.Post(loadstart);
|
||||
API.HelyettesítésFrissítés(OpenFileOutput("orarend", FileCreationMode.Private)).ContinueWith(t =>
|
||||
{
|
||||
handler.RemoveCallbacks(loadstart);
|
||||
handler.Post(() =>
|
||||
{
|
||||
TaskHiba(t);
|
||||
bar.Visibility = ViewStates.Gone;
|
||||
menu.Enabled = true;
|
||||
if (TaskHiba(t, internethiba))
|
||||
{
|
||||
órarendfrissítés();
|
||||
Toast.MakeText(this, "Helyettesítések frissítve", ToastLength.Short).Show();
|
||||
utolsófrissítésplusz1óra = DateTime.Now + new TimeSpan(1, 0, 0);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
private void ÓrarendFrissítés(Órarend ór = null)
|
||||
{ //TODO: Meghívni minden tervezett alkalommal
|
||||
{
|
||||
var bar = FindViewById<ProgressBar>(Resource.Id.progressBar1);
|
||||
handler.Post(() => bar.Visibility = ViewStates.Visible);
|
||||
var menu = FindViewById<ActionMenuView>(Resource.Id.actionMenuView1);
|
||||
Action loadstart = () =>
|
||||
{
|
||||
bar.Visibility = ViewStates.Visible;
|
||||
menu.Enabled = false;
|
||||
};
|
||||
handler.Post(loadstart);
|
||||
API.Frissítés(OpenFileOutput("orarend", FileCreationMode.Private), OpenFileOutput("osztaly", FileCreationMode.Private), ór).ContinueWith(t =>
|
||||
{
|
||||
handler.RemoveCallbacks(loadstart);
|
||||
handler.Post(() =>
|
||||
{
|
||||
if (TaskHiba(t) && (ór == null || ór == órarend))
|
||||
órarendfrissítés();
|
||||
bar.Visibility = ViewStates.Gone;
|
||||
órarendlistafrissítés();
|
||||
Toast.MakeText(this, "Órarend" + (ór == null ? "ek" : "") + " és osztálylista frissítve", ToastLength.Short).Show();
|
||||
HelyettesítésFrissítés();
|
||||
if (TaskHiba(t))
|
||||
{
|
||||
if (ór == null || ór == órarend)
|
||||
órarendfrissítés();
|
||||
Toast.MakeText(this, (API.Órarendek.Count > 0 ? "Órarend" + (ór == null ? "ek" : "") + " és o" : "O") + "sztálylista frissítve", ToastLength.Short).Show();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -127,8 +150,8 @@ namespace OrarendAndroidApp
|
|||
{
|
||||
var table = FindViewById<TableLayout>(Resource.Id.tableLayout1);
|
||||
deselect();
|
||||
if (table.ChildCount > 1)
|
||||
table.RemoveViews(1, table.ChildCount - 1);
|
||||
if (table.ChildCount > 0)
|
||||
table.RemoveViews(0, table.ChildCount);
|
||||
if (órarend == null)
|
||||
return;
|
||||
TableRow tr = new TableRow(this);
|
||||
|
@ -153,8 +176,8 @@ namespace OrarendAndroidApp
|
|||
addCell((j + 1).ToString(), Color.Black, tr);
|
||||
for (int i = 0; i < 6; i++)
|
||||
{
|
||||
var helyettesítés = órarend.Helyettesítések.SingleOrDefault(h => (int)h.EredetiNap - 1 == i && h.EredetiSorszám - 1 == j);
|
||||
var helyettesítésIde = órarend.Helyettesítések.SingleOrDefault(h => (int)h.ÚjNap - 1 == i && h.ÚjSorszám - 1 == j && h.ÚjÓra != null); //Ha az eredeti óra elmarad, és ide lesz helyezve egy másik, az áthelyezést mutassa
|
||||
var helyettesítés = órarend.Helyettesítések.FirstOrDefault(h => (int)h.EredetiNap - 1 == i && h.EredetiSorszám - 1 == j);
|
||||
var helyettesítésIde = órarend.Helyettesítések.FirstOrDefault(h => (int)h.ÚjNap - 1 == i && h.ÚjSorszám - 1 == j && h.ÚjÓra != null); //Ha az eredeti óra elmarad, és ide lesz helyezve egy másik, az áthelyezést mutassa
|
||||
//addCell(helyettesítés?.ÚjÓra?.EgyediNév ?? órarend.Órák[i][j]?.EgyediNév ?? "", helyettesítés == null ? Color.Black : Color.Red, tr, new int[2] { i, j });
|
||||
addCell(helyettesítésIde != null ? helyettesítésIde.ÚjÓra.EgyediNév : helyettesítés != null ? helyettesítés.EredetiNap != helyettesítés.ÚjNap || helyettesítés.EredetiSorszám != helyettesítés.ÚjSorszám ? "Áthelyezve" : helyettesítés.ÚjÓra?.EgyediNév ?? "elmarad" : órarend.Órák[i][j]?.EgyediNév ?? "", helyettesítés == null ? Color.Black : Color.Red, tr, new int[2] { i, j });
|
||||
}
|
||||
|
@ -170,6 +193,7 @@ namespace OrarendAndroidApp
|
|||
private void deselect()
|
||||
{
|
||||
FindViewById<TextView>(Resource.Id.kivoraTV).Visibility = ViewStates.Gone;
|
||||
FindViewById<TextView>(Resource.Id.helyTV).Visibility = ViewStates.Gone;
|
||||
selected = null;
|
||||
}
|
||||
|
||||
|
@ -188,12 +212,12 @@ namespace OrarendAndroidApp
|
|||
Helyettesítés helyettesítésIde = null;
|
||||
if (ij != null)
|
||||
{
|
||||
helyettesítésInnen = órarend.Helyettesítések.SingleOrDefault(h => (int)h.EredetiNap == ij[0] + 1 && h.EredetiSorszám == ij[1] + 1);
|
||||
helyettesítésIde = órarend.Helyettesítések.SingleOrDefault(h => (int)h.ÚjNap == ij[0] + 1 && h.ÚjSorszám == ij[1] + 1 && h.ÚjÓra != null); //Ha az eredeti óra elmarad, és ide lesz helyezve egy másik, az áthelyezést mutassa
|
||||
helyettesítésInnen = órarend.Helyettesítések.FirstOrDefault(h => (int)h.EredetiNap == ij[0] + 1 && h.EredetiSorszám == ij[1] + 1);
|
||||
helyettesítésIde = órarend.Helyettesítések.FirstOrDefault(h => (int)h.ÚjNap == ij[0] + 1 && h.ÚjSorszám == ij[1] + 1 && h.ÚjÓra != null); //Ha az eredeti óra elmarad, és ide lesz helyezve egy másik, az áthelyezést mutassa
|
||||
}
|
||||
//if (ij == null || (óra = órarend.Órák[ij[0]][ij[1]] ?? ((helyettesítésIde = órarend.Helyettesítések.SingleOrDefault(h => (int)h.ÚjNap == ij[0] + 1 && h.ÚjSorszám == ij[1] + 1))?.ÚjÓra)) == null)
|
||||
if (ij == null || (óra = órarend.Órák[ij[0]][ij[1]] ?? (helyettesítésIde?.ÚjÓra)) == null)
|
||||
{ //Ha az óra nincs beállítva, beállítja a helyettesítettre
|
||||
{ //Ha az óra nincs beállítva, beállítja a helyettesítettre - TODO: Ne; rejtse el
|
||||
deselect();
|
||||
return;
|
||||
}
|
||||
|
@ -205,20 +229,21 @@ namespace OrarendAndroidApp
|
|||
+ "\nTerem: " + óra.Terem
|
||||
+ "\nTanár: " + óra.Tanár.Név
|
||||
+ "\nIdőtartam: " + órarend.Órakezdetek[ij[1]].ToString("hh\\:mm") + "-" + órarend.Órakezdetek[ij[1]].Add(new TimeSpan(0, 45, 0)).ToString("hh\\:mm")
|
||||
+ "\nCsoport: " + óra.Csoportok.Aggregate((a, b) => a + ", " + b)
|
||||
+ (helyettesítésInnen == null ? ""
|
||||
+ "\nCsoport: " + óra.Csoportok.Aggregate((a, b) => a + ", " + b);
|
||||
var hely = FindViewById<TextView>(Resource.Id.helyTV);
|
||||
hely.Text = (helyettesítésInnen == null ? ""
|
||||
: helyettesítésInnen.EredetiNap != helyettesítésInnen.ÚjNap || helyettesítésInnen.EredetiSorszám != helyettesítésInnen.ÚjSorszám
|
||||
? "\n\nÁthelyezve: innen --> " + Napok[(int)helyettesítésInnen.ÚjNap - 1] + " " + helyettesítésInnen.ÚjSorszám + ". óra"
|
||||
? "Áthelyezve: innen --> " + Napok[(int)helyettesítésInnen.ÚjNap - 1] + " " + helyettesítésInnen.ÚjSorszám + ". óra"
|
||||
: helyettesítésInnen.ÚjÓra != null && helyettesítésInnen.ÚjÓra != óra
|
||||
? "\n\nHelyettesítés:"
|
||||
? "Helyettesítés:"
|
||||
+ (helyettesítésInnen.ÚjÓra.EgyediNév != óra.EgyediNév ? "\nÓra: " + helyettesítésInnen.ÚjÓra.EgyediNév : "")
|
||||
+ (helyettesítésInnen.ÚjÓra.Terem != óra.Terem ? "\nTerem: " + helyettesítésInnen.ÚjÓra.Terem : "")
|
||||
+ (helyettesítésInnen.ÚjÓra.Tanár.Név != óra.Tanár.Név ? "\nTanár: " + helyettesítésInnen.ÚjÓra.Tanár.Név : "")
|
||||
+ (helyettesítésInnen.ÚjÓra.Csoportok[0] != óra.Csoportok[0] ? "\nCsoport: " + helyettesítésInnen.ÚjÓra.Csoportok.Aggregate((a, b) => a + ", " + b) : "")
|
||||
: "\n\nAz óra elmarad")
|
||||
: "Az óra elmarad")
|
||||
+ (helyettesítésIde == null ? ""
|
||||
: helyettesítésIde.EredetiNap != helyettesítésIde.ÚjNap || helyettesítésIde.EredetiSorszám != helyettesítésIde.ÚjSorszám
|
||||
? "\n\nÁthelyezve: " + Napok[(int)helyettesítésInnen.EredetiNap - 1] + " " + helyettesítésIde.EredetiSorszám + ". óra --> ide"
|
||||
? "Áthelyezve: " + Napok[(int)helyettesítésInnen.EredetiNap - 1] + " " + helyettesítésIde.EredetiSorszám + ". óra --> ide"
|
||||
+ (helyettesítésIde.ÚjÓra.EgyediNév != óra.EgyediNév ? "\nÓra: " + helyettesítésIde.ÚjÓra.EgyediNév : "")
|
||||
+ (helyettesítésIde.ÚjÓra.Terem != óra.Terem ? "\nTerem: " + helyettesítésIde.ÚjÓra.Terem : "")
|
||||
+ ((óra.Tanár.Név != (helyettesítésIde.ÚjÓra.Tanár.Név == "" ? órarend.Órák[(int)helyettesítésIde.EredetiNap - 1][helyettesítésIde.EredetiSorszám - 1].Tanár.Név : helyettesítésIde.ÚjÓra.Tanár.Név)) ? "\nTanár: " + (óra.Tanár.Név == "" ? órarend.Órák[(int)helyettesítésIde.EredetiNap - 1][helyettesítésIde.EredetiSorszám - 1].Tanár.Név : helyettesítésIde.ÚjÓra.Tanár.Név) : "") //TODO: A tanár mező üres ("")
|
||||
|
@ -226,6 +251,7 @@ namespace OrarendAndroidApp
|
|||
: "") //Ha a pozicíó nem változott, a fentebbi rész már kiírta az adatait
|
||||
;
|
||||
kivora.Visibility = ViewStates.Visible;
|
||||
hely.Visibility = ViewStates.Visible;
|
||||
}
|
||||
|
||||
public override bool OnCreateOptionsMenu(IMenu menu)
|
||||
|
@ -292,14 +318,18 @@ namespace OrarendAndroidApp
|
|||
/// Az összes hibát kiírja, ami a <see cref="Task"/> futása közben keletkezett
|
||||
/// </summary>
|
||||
/// <param name="t"></param>
|
||||
/// <param name="internethiba">Ha igaz, kiírja a WebException-öket is</param>
|
||||
/// <returns>Igaz, ha nem volt hiba</returns>
|
||||
private bool TaskHiba(Task t)
|
||||
private bool TaskHiba(Task t, bool internethiba = true)
|
||||
{
|
||||
bool ret = true;
|
||||
foreach (var ex in (IEnumerable<System.Exception>)t.Exception?.InnerExceptions ?? new System.Exception[0])
|
||||
foreach (var ex in (IEnumerable<Exception>)t.Exception?.InnerExceptions ?? new Exception[0])
|
||||
{
|
||||
if (ex is WebException)
|
||||
{
|
||||
if (internethiba)
|
||||
Hiba("Nem sikerült csatlakozni az E-naplóhoz.\n" + ex.Message);
|
||||
}
|
||||
else
|
||||
Hiba(ex.ToString());
|
||||
ret = false;
|
||||
|
@ -391,18 +421,31 @@ namespace OrarendAndroidApp
|
|||
{
|
||||
base.OnWindowFocusChanged(hasFocus);
|
||||
if (!hasFocus)
|
||||
{
|
||||
timer.Change(Timeout.Infinite, Timeout.Infinite);
|
||||
return;
|
||||
}
|
||||
timer.Change(new TimeSpan(0, 0, 0), new TimeSpan(0, 0, 1));
|
||||
frissítésHa1ÓraEltelt();
|
||||
MaiNaphozGörgetés();
|
||||
//handler.Post(() => { if ((table.GetChildAt(1) as ViewGroup).GetChildAt((int)x).RequestFocus()) Toast.MakeText(this, "Siker", ToastLength.Short).Show(); else Toast.MakeText(this, "Nem siker", ToastLength.Short).Show(); });
|
||||
}
|
||||
|
||||
private void MaiNaphozGörgetés()
|
||||
{
|
||||
var x = DateTime.Today.DayOfWeek == DayOfWeek.Sunday ? DayOfWeek.Monday : DateTime.Today.DayOfWeek;
|
||||
var table = FindViewById<TableLayout>(Resource.Id.tableLayout1);
|
||||
if (table.ChildCount <= 1)
|
||||
if (table.ChildCount == 0)
|
||||
return;
|
||||
FindViewById<HorizontalScrollView>(Resource.Id.horizontalView).SmoothScrollTo((table.GetChildAt(1) as ViewGroup).GetChildAt((int)x).Left, 0);
|
||||
var cell = (table.GetChildAt(0) as ViewGroup).GetChildAt((int)x);
|
||||
FindViewById<HorizontalScrollView>(Resource.Id.horizontalView).SmoothScrollTo(Math.Max(cell.Left - (FindViewById(Resource.Id.container).Width - cell.Width) / 2, 0), 0);
|
||||
}
|
||||
|
||||
private DateTime utolsófrissítésplusz1óra = DateTime.MinValue;
|
||||
private void frissítésHa1ÓraEltelt()
|
||||
{
|
||||
if (utolsófrissítésplusz1óra > DateTime.Now)
|
||||
return;
|
||||
HelyettesítésFrissítés(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
78
OrarendAndroidApp/Resources/Resource.Designer.cs
generated
78
OrarendAndroidApp/Resources/Resource.Designer.cs
generated
|
@ -84,14 +84,17 @@ namespace OrarendAndroidApp
|
|||
public partial class Id
|
||||
{
|
||||
|
||||
// aapt resource value: 0x7f06000b
|
||||
public const int ScrollView01 = 2131099659;
|
||||
// aapt resource value: 0x7f06000d
|
||||
public const int ScrollView01 = 2131099661;
|
||||
|
||||
// aapt resource value: 0x7f06000a
|
||||
public const int ScrollView02 = 2131099658;
|
||||
|
||||
// aapt resource value: 0x7f060015
|
||||
public const int actionMenuView1 = 2131099669;
|
||||
|
||||
// aapt resource value: 0x7f060009
|
||||
public const int ScrollView02 = 2131099657;
|
||||
|
||||
// aapt resource value: 0x7f060013
|
||||
public const int actionMenuView1 = 2131099667;
|
||||
public const int container = 2131099657;
|
||||
|
||||
// aapt resource value: 0x7f060005
|
||||
public const int csoportokEditText = 2131099653;
|
||||
|
@ -99,56 +102,59 @@ namespace OrarendAndroidApp
|
|||
// aapt resource value: 0x7f060008
|
||||
public const int deleteButton = 2131099656;
|
||||
|
||||
// aapt resource value: 0x7f06000c
|
||||
public const int horizontalView = 2131099660;
|
||||
// aapt resource value: 0x7f060011
|
||||
public const int helyTV = 2131099665;
|
||||
|
||||
// aapt resource value: 0x7f06000e
|
||||
public const int horizontalView = 2131099662;
|
||||
|
||||
// aapt resource value: 0x7f060012
|
||||
public const int kezdvegTV = 2131099666;
|
||||
|
||||
// aapt resource value: 0x7f060010
|
||||
public const int kezdvegTV = 2131099664;
|
||||
public const int kivoraTV = 2131099664;
|
||||
|
||||
// aapt resource value: 0x7f06000f
|
||||
public const int kivoraTV = 2131099663;
|
||||
|
||||
// aapt resource value: 0x7f060011
|
||||
public const int kovoraTV = 2131099665;
|
||||
|
||||
// aapt resource value: 0x7f060016
|
||||
public const int menu_add = 2131099670;
|
||||
|
||||
// aapt resource value: 0x7f060017
|
||||
public const int menu_edit = 2131099671;
|
||||
|
||||
// aapt resource value: 0x7f060019
|
||||
public const int menu_fullrefresh = 2131099673;
|
||||
// aapt resource value: 0x7f060013
|
||||
public const int kovoraTV = 2131099667;
|
||||
|
||||
// aapt resource value: 0x7f060018
|
||||
public const int menu_preferences = 2131099672;
|
||||
public const int menu_add = 2131099672;
|
||||
|
||||
// aapt resource value: 0x7f060015
|
||||
public const int menu_refresh = 2131099669;
|
||||
// aapt resource value: 0x7f060019
|
||||
public const int menu_edit = 2131099673;
|
||||
|
||||
// aapt resource value: 0x7f06001b
|
||||
public const int menu_fullrefresh = 2131099675;
|
||||
|
||||
// aapt resource value: 0x7f06001a
|
||||
public const int menu_preferences = 2131099674;
|
||||
|
||||
// aapt resource value: 0x7f060017
|
||||
public const int menu_refresh = 2131099671;
|
||||
|
||||
// aapt resource value: 0x7f060001
|
||||
public const int névEditText = 2131099649;
|
||||
|
||||
// aapt resource value: 0x7f060012
|
||||
public const int osztalylistaTV = 2131099666;
|
||||
// aapt resource value: 0x7f060014
|
||||
public const int osztalylistaTV = 2131099668;
|
||||
|
||||
// aapt resource value: 0x7f060003
|
||||
public const int osztálySpinner = 2131099651;
|
||||
|
||||
// aapt resource value: 0x7f06000e
|
||||
public const int progressBar1 = 2131099662;
|
||||
// aapt resource value: 0x7f06000c
|
||||
public const int progressBar1 = 2131099660;
|
||||
|
||||
// aapt resource value: 0x7f060007
|
||||
public const int saveButton = 2131099655;
|
||||
|
||||
// aapt resource value: 0x7f06000a
|
||||
public const int scrollLinearLayout = 2131099658;
|
||||
// aapt resource value: 0x7f06000b
|
||||
public const int scrollLinearLayout = 2131099659;
|
||||
|
||||
// aapt resource value: 0x7f060014
|
||||
public const int spinner = 2131099668;
|
||||
// aapt resource value: 0x7f060016
|
||||
public const int spinner = 2131099670;
|
||||
|
||||
// aapt resource value: 0x7f06000d
|
||||
public const int tableLayout1 = 2131099661;
|
||||
// aapt resource value: 0x7f06000f
|
||||
public const int tableLayout1 = 2131099663;
|
||||
|
||||
// aapt resource value: 0x7f060000
|
||||
public const int textView1 = 2131099648;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/container"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
|
@ -20,6 +21,17 @@
|
|||
android:minWidth="25px"
|
||||
android:minHeight="25px"
|
||||
android:id="@+id/scrollLinearLayout">
|
||||
<ProgressBar
|
||||
style="@android:attr/progressBarStyleHorizontal"
|
||||
android:id="@+id/progressBar1"
|
||||
android:indeterminateTint="#00ffffff"
|
||||
android:indeterminate="true"
|
||||
android:indeterminateBehavior="repeat"
|
||||
android:indeterminateOnly="true"
|
||||
android:indeterminateTintMode="add"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:visibility="gone" />
|
||||
<ScrollView
|
||||
android:id="@+id/ScrollView01"
|
||||
android:layout_height="wrap_content"
|
||||
|
@ -39,17 +51,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:stretchColumns="1"
|
||||
android:isScrollContainer="true">
|
||||
<ProgressBar
|
||||
style="@android:attr/progressBarStyleHorizontal"
|
||||
android:id="@+id/progressBar1"
|
||||
android:indeterminateTint="#00ffffff"
|
||||
android:indeterminate="true"
|
||||
android:indeterminateBehavior="repeat"
|
||||
android:indeterminateOnly="true"
|
||||
android:indeterminateTintMode="add"
|
||||
android:visibility="gone" />
|
||||
</TableLayout>
|
||||
android:isScrollContainer="true" />
|
||||
</HorizontalScrollView>
|
||||
</ScrollView>
|
||||
<TextView
|
||||
|
@ -60,6 +62,15 @@
|
|||
android:textSize="14sp"
|
||||
android:textStyle="bold"
|
||||
android:visibility="gone" />
|
||||
<TextView
|
||||
android:id="@+id/helyTV"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Helyettesítés"
|
||||
android:textSize="14sp"
|
||||
android:textStyle="bold"
|
||||
android:visibility="gone"
|
||||
android:textColor="#FF0000" />
|
||||
<TextView
|
||||
android:id="@+id/kezdvegTV"
|
||||
android:text="Betöltés"
|
||||
|
|
Loading…
Reference in a new issue