POS-48 Dodano wyświetlanie błędów w ekranie historii i materiałach
This commit is contained in:
parent
925b79e1ca
commit
966edab483
@ -36,13 +36,8 @@ namespace Klient.Droid
|
|||||||
|
|
||||||
base.OnCreate(savedInstanceState);
|
base.OnCreate(savedInstanceState);
|
||||||
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
|
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
|
||||||
LoadApplication(new App());
|
LoadApplication(new App());
|
||||||
SetContentView(Resource.Layout.ekranZLinkami);
|
SetContentView(Resource.Layout.ekranStartowy);
|
||||||
for (int i = 0; i < 15; i++)
|
|
||||||
{
|
|
||||||
// FindViewById<TextView>(Resource.Id.links).Text = FindViewById<TextView>(Resource.Id.links).Text + fullLink[i].Title + ": " + fullLink[i].Link + "\n\n";
|
|
||||||
FindViewById<TextView>(Resource.Id.links).Text = FindViewById<TextView>(Resource.Id.links).Text + "teeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeest \n";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Java.Interop.Export("SignIn")]
|
[Java.Interop.Export("SignIn")]
|
||||||
@ -254,14 +249,13 @@ namespace Klient.Droid
|
|||||||
var second_jsonString = await response.Content.ReadAsStringAsync();
|
var second_jsonString = await response.Content.ReadAsStringAsync();
|
||||||
dynamic second_jsonObject = JsonConvert.DeserializeObject(second_jsonString);
|
dynamic second_jsonObject = JsonConvert.DeserializeObject(second_jsonString);
|
||||||
|
|
||||||
// List<SearchResult> fullLink = JsonConvert.DeserializeObject<List<SearchResult>>(second_jsonObject);
|
List<SearchResult> fullLink = JsonConvert.DeserializeObject<List<SearchResult>>(second_jsonObject);
|
||||||
|
|
||||||
int end = 10;
|
int end = 10;
|
||||||
//if (fullLink.Count < 10) end = fullLink.Count;
|
if (fullLink.Count < 10) end = fullLink.Count;
|
||||||
for (int i = 0; i < end; i++)
|
for (int i = 0; i < end; i++)
|
||||||
{
|
{
|
||||||
// FindViewById<TextView>(Resource.Id.links).Text = FindViewById<TextView>(Resource.Id.links).Text + fullLink[i].Title + ": " + fullLink[i].Link + "\n\n";
|
FindViewById<TextView>(Resource.Id.links).Text = FindViewById<TextView>(Resource.Id.links).Text + fullLink[i].Title + ": " + fullLink[i].Link + "\n\n";
|
||||||
FindViewById<TextView>(Resource.Id.links).Text = FindViewById<TextView>(Resource.Id.links).Text + "teeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeest \n";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -357,7 +351,8 @@ namespace Klient.Droid
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FindViewById<TextView>(Resource.Id.history).Text = "Coś poszło nie tak!";
|
string msg = await response.Content.ReadAsStringAsync();
|
||||||
|
FindViewById<TextView>(Resource.Id.HistoryError).Text = msg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1359
Klient/Klient/Klient.Android/Resources/Resource.designer.cs
generated
1359
Klient/Klient/Klient.Android/Resources/Resource.designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -43,7 +43,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/history"
|
android:id="@+id/history"
|
||||||
android:layout_below="@+id/HistoryTitle"
|
android:layout_below="@+id/HistoryError"
|
||||||
android:textColor="#ff000000"
|
android:textColor="#ff000000"
|
||||||
android:paddingBottom="35dp"
|
android:paddingBottom="35dp"
|
||||||
android:focusableInTouchMode="true"
|
android:focusableInTouchMode="true"
|
||||||
@ -54,6 +54,16 @@
|
|||||||
android:scrollIndicators="right"
|
android:scrollIndicators="right"
|
||||||
android:scrollbarAlwaysDrawVerticalTrack="true"
|
android:scrollbarAlwaysDrawVerticalTrack="true"
|
||||||
android:textIsSelectable="true"
|
android:textIsSelectable="true"
|
||||||
android:paddingTop="35dp"/>
|
android:paddingTop="10dp"/>
|
||||||
|
<TextView
|
||||||
|
android:text=""
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/HistoryError"
|
||||||
|
android:layout_below="@+id/HistoryTitle"
|
||||||
|
android:textColor="#ffff0000"
|
||||||
|
android:layout_centerInParent="true"
|
||||||
|
android:paddingTop="10dp" />
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/links"
|
android:id="@+id/links"
|
||||||
android:layout_below="@+id/linkTitle"
|
android:layout_below="@+id/LinkError"
|
||||||
android:textColor="#ff393939"
|
android:textColor="#ff393939"
|
||||||
android:linksClickable="true"
|
android:linksClickable="true"
|
||||||
android:autoLink="web"
|
android:autoLink="web"
|
||||||
@ -37,7 +37,17 @@
|
|||||||
android:isScrollContainer="true"
|
android:isScrollContainer="true"
|
||||||
android:textIsSelectable="true"
|
android:textIsSelectable="true"
|
||||||
android:focusableInTouchMode="true"
|
android:focusableInTouchMode="true"
|
||||||
android:paddingTop="35dp" />
|
android:paddingTop="10dp" />
|
||||||
|
<TextView
|
||||||
|
android:text=""
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_below="@id/linkTitle"
|
||||||
|
android:id="@+id/LinkError"
|
||||||
|
android:textColor="#ffff0000"
|
||||||
|
android:layout_centerInParent="true"
|
||||||
|
android:paddingTop="10dp" />
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:src="@drawable/obraz4"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
|
Loading…
Reference in New Issue
Block a user