mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-01-18 12:56:45 -06:00
Merge branch 'develop'
This commit is contained in:
commit
eab5fdacee
@ -880,11 +880,17 @@ public class Iuczniowie implements EdziennikInterface {
|
|||||||
boolean countToTheAverage = jGrade.get("DoSredniej").getAsBoolean();
|
boolean countToTheAverage = jGrade.get("DoSredniej").getAsBoolean();
|
||||||
float value = jGrade.get("WartoscDoSred").getAsFloat();
|
float value = jGrade.get("WartoscDoSred").getAsFloat();
|
||||||
|
|
||||||
|
String gradeColor = jGrade.get("Kolor").getAsString();
|
||||||
|
int colorInt = 0xff2196f3;
|
||||||
|
if (!gradeColor.isEmpty()) {
|
||||||
|
colorInt = Color.parseColor("#"+gradeColor);
|
||||||
|
}
|
||||||
|
|
||||||
Grade gradeObject = new Grade(
|
Grade gradeObject = new Grade(
|
||||||
profileId,
|
profileId,
|
||||||
jGrade.get("idK").getAsLong(),
|
jGrade.get("idK").getAsLong(),
|
||||||
jGrade.get("Kategoria").getAsString(),
|
jGrade.get("Kategoria").getAsString(),
|
||||||
Color.parseColor("#"+jGrade.get("Kolor").getAsString()),
|
colorInt,
|
||||||
"",
|
"",
|
||||||
jGrade.get("Ocena").getAsString(),
|
jGrade.get("Ocena").getAsString(),
|
||||||
value,
|
value,
|
||||||
|
@ -17,147 +17,154 @@
|
|||||||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
||||||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
|
||||||
|
|
||||||
<LinearLayout
|
<ScrollView
|
||||||
android:id="@+id/webPushConfig"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textView8"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="8dp"
|
|
||||||
android:text="Przekazywanie powiadomień pozwala przesyłać wszystkie powiadomienia z tego urządzenia na wszystkie sparowane komputery, widoczne poniżej.\n\nPowiadomienia będą się wyświetlać w przeglądarce, w okienku pop-up, w prawym dolnym rogu ekranu.\n\nLista komputerów docelowych jest niezależna od wybranego profilu ucznia." />
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/webPushConfig"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
|
||||||
android:layout_marginLeft="8dp"
|
|
||||||
android:layout_marginTop="@dimen/section_margin_top"
|
|
||||||
android:layout_marginEnd="8dp"
|
|
||||||
android:layout_marginRight="8dp"
|
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:id="@+id/textView8"
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/web_push_configured_browsers"
|
|
||||||
android:textAllCaps="true"
|
|
||||||
android:textColor="?attr/colorSection"
|
|
||||||
android:textStyle="bold" />
|
|
||||||
|
|
||||||
<View
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="@dimen/section_underline_height"
|
|
||||||
android:layout_marginTop="2dp"
|
|
||||||
android:background="?attr/colorSection" />
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<FrameLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableLayout
|
|
||||||
android:id="@+id/browserList"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="8dp"
|
android:layout_margin="8dp"
|
||||||
android:shrinkColumns="0"
|
android:text="Przekazywanie powiadomień pozwala przesyłać wszystkie powiadomienia z tego urządzenia na wszystkie sparowane komputery, widoczne poniżej.\n\nPowiadomienia będą się wyświetlać w przeglądarce, w okienku pop-up, w prawym dolnym rogu ekranu.\n\nLista komputerów docelowych jest niezależna od wybranego profilu ucznia." />
|
||||||
android:stretchColumns="0">
|
|
||||||
|
|
||||||
<!--<TableRow
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:layout_marginLeft="8dp"
|
||||||
|
android:layout_marginTop="@dimen/section_margin_top"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="end">
|
android:text="@string/web_push_configured_browsers"
|
||||||
|
android:textAllCaps="true"
|
||||||
|
android:textColor="?attr/colorSection"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<TextView
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/section_underline_height"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:background="?attr/colorSection" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<TableLayout
|
||||||
|
android:id="@+id/browserList"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_margin="8dp"
|
||||||
|
android:shrinkColumns="0"
|
||||||
|
android:stretchColumns="0">
|
||||||
|
|
||||||
|
<!--<TableRow
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_marginRight="8dp"
|
android:gravity="end">
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="Chrome 70.0.3538.102 @ Windows 7 64-bit" />
|
|
||||||
|
|
||||||
<Button
|
<TextView
|
||||||
android:id="@+id/button6"
|
android:layout_width="match_parent"
|
||||||
style="@style/Widget.AppCompat.Button.Small"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_marginRight="8dp"
|
||||||
android:layout_height="wrap_content"
|
android:gravity="center_vertical"
|
||||||
android:minHeight="0dp"
|
android:text="Chrome 70.0.3538.102 @ Windows 7 64-bit" />
|
||||||
android:minWidth="0dp"
|
|
||||||
android:text="Usuń" />
|
|
||||||
|
|
||||||
</TableRow>-->
|
<Button
|
||||||
|
android:id="@+id/button6"
|
||||||
|
style="@style/Widget.AppCompat.Button.Small"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:minHeight="0dp"
|
||||||
|
android:minWidth="0dp"
|
||||||
|
android:text="Usuń" />
|
||||||
|
|
||||||
</TableLayout>
|
</TableRow>-->
|
||||||
|
|
||||||
<ProgressBar
|
</TableLayout>
|
||||||
android:id="@+id/browserListProgressBar"
|
|
||||||
style="?android:attr/progressBarStyle"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center"
|
|
||||||
android:visibility="invisible" />
|
|
||||||
|
|
||||||
<TextView
|
<ProgressBar
|
||||||
android:id="@+id/browserListErrorText"
|
android:id="@+id/browserListProgressBar"
|
||||||
android:layout_width="wrap_content"
|
style="?android:attr/progressBarStyle"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_height="wrap_content"
|
||||||
android:textSize="18sp"
|
android:layout_gravity="center"
|
||||||
android:textStyle="italic"
|
android:visibility="invisible" />
|
||||||
android:visibility="visible"
|
|
||||||
android:text="@string/web_push_no_browsers" />
|
|
||||||
|
|
||||||
</FrameLayout>
|
<TextView
|
||||||
|
android:id="@+id/browserListErrorText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:textSize="18sp"
|
||||||
|
android:textStyle="italic"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:text="@string/web_push_no_browsers" />
|
||||||
|
|
||||||
<LinearLayout
|
</FrameLayout>
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginStart="8dp"
|
|
||||||
android:layout_marginLeft="8dp"
|
|
||||||
android:layout_marginTop="@dimen/section_margin_top"
|
|
||||||
android:layout_marginEnd="8dp"
|
|
||||||
android:layout_marginRight="8dp"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/web_push_pair_browser"
|
android:layout_marginStart="8dp"
|
||||||
android:textAllCaps="true"
|
android:layout_marginLeft="8dp"
|
||||||
android:textColor="?attr/colorSection"
|
android:layout_marginTop="@dimen/section_margin_top"
|
||||||
android:textStyle="bold" />
|
android:layout_marginEnd="8dp"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<View
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/web_push_pair_browser"
|
||||||
|
android:textAllCaps="true"
|
||||||
|
android:textColor="?attr/colorSection"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/section_underline_height"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:background="?attr/colorSection" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="@dimen/section_underline_height"
|
|
||||||
android:layout_marginTop="2dp"
|
|
||||||
android:background="?attr/colorSection" />
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_margin="8dp"
|
|
||||||
android:orientation="horizontal">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="W przeglądarce na komputerze wejdź na stronę\n\nhttp://edziennik.szczodrzynski.pl/wp\n\nUdziel zgody na wysyłanie powiadomień, następnie zeskanuj wygenerowany kod QR.\n\nPod tym samym adresem możesz zarządzać listą sparowanych z przeglądarką urządzeń.\n\nJeśli sparujesz kilka urządzeń z tą samą przeglądarką, możesz otrzymywać te same powiadomienia kilkukrotnie." />
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/webPushScanNewButton"
|
|
||||||
style="@style/Widget.AppCompat.Button.Small"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Skanuj..." />
|
android:layout_margin="8dp"
|
||||||
</LinearLayout>
|
android:orientation="vertical">
|
||||||
|
|
||||||
</LinearLayout>
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
|
||||||
|
android:text="W przeglądarce na komputerze wejdź na stronę\n\nhttp://edziennik.szczodrzynski.pl/wp\n\nUdziel zgody na wysyłanie powiadomień, następnie zeskanuj wygenerowany kod QR.\n\nPod tym samym adresem możesz zarządzać listą sparowanych z przeglądarką urządzeń.\n\nJeśli sparujesz kilka urządzeń z tą samą przeglądarką, możesz otrzymywać te same powiadomienia kilkukrotnie." />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/webPushScanNewButton"
|
||||||
|
style="@style/Widget.AppCompat.Button.Small"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:text="Skanuj..." />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
<me.dm7.barcodescanner.zxing.ZXingScannerView
|
<me.dm7.barcodescanner.zxing.ZXingScannerView
|
||||||
android:id="@+id/qrCodeScanner"
|
android:id="@+id/qrCodeScanner"
|
||||||
@ -168,4 +175,4 @@
|
|||||||
</me.dm7.barcodescanner.zxing.ZXingScannerView>
|
</me.dm7.barcodescanner.zxing.ZXingScannerView>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</layout>
|
</layout>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user