develop #10
@ -37,7 +37,7 @@ 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.ekranStartowy);
|
SetContentView(Resource.Layout.ekranPoLogowaniu);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Java.Interop.Export("SignIn")]
|
[Java.Interop.Export("SignIn")]
|
||||||
@ -152,6 +152,13 @@ namespace Klient.Droid
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Java.Interop.Export("HelpRegisterScreen")]
|
||||||
|
public void GoToRegisterHelp(View v)
|
||||||
|
{
|
||||||
|
SetContentView(Resource.Layout.ekranPomocRejestracja);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
[Java.Interop.Export("GoToProfile")]
|
[Java.Interop.Export("GoToProfile")]
|
||||||
public void GoBackToProfile(View v)
|
public void GoBackToProfile(View v)
|
||||||
{
|
{
|
||||||
@ -175,11 +182,6 @@ namespace Klient.Droid
|
|||||||
SetContentView(Resource.Layout.ekranRejestracji);
|
SetContentView(Resource.Layout.ekranRejestracji);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Java.Interop.Export("HelpLoginScreen")]
|
|
||||||
public void MainScreenAbout(View v)
|
|
||||||
{
|
|
||||||
SetContentView(Resource.Layout.ekranInformacji);
|
|
||||||
}
|
|
||||||
[Java.Interop.Export("GoToMainScreenFromInformation")]
|
[Java.Interop.Export("GoToMainScreenFromInformation")]
|
||||||
public void GoToMainScreenFromInformation(View v)
|
public void GoToMainScreenFromInformation(View v)
|
||||||
{
|
{
|
||||||
@ -346,5 +348,11 @@ namespace Klient.Droid
|
|||||||
FindViewById<TextView>(Resource.Id.history).Text = "Coś poszło nie tak!";
|
FindViewById<TextView>(Resource.Id.history).Text = "Coś poszło nie tak!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Java.Interop.Export("HelpPhoto")]
|
||||||
|
public void GotToHelpPhoto(View v)
|
||||||
|
{
|
||||||
|
SetContentView(Resource.Layout.ekranPomocZdjecie);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -149,11 +149,6 @@
|
|||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</AndroidResource>
|
</AndroidResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<AndroidResourceAnalysisConfig Include="Resources\layout\ekranPomocRejestracja.xml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</AndroidResourceAnalysisConfig>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\layout\ekranPomocZdjecie.xml">
|
<AndroidResource Include="Resources\layout\ekranPomocZdjecie.xml">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
@ -174,6 +169,14 @@
|
|||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</AndroidResource>
|
</AndroidResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\layout\ekranPomocRejestracja.xml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</AndroidResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable\Obraz4.png" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<VisualStudio>
|
<VisualStudio>
|
||||||
|
File diff suppressed because it is too large
Load Diff
BIN
Klient/Klient/Klient.Android/Resources/drawable/Obraz4.png
Normal file
BIN
Klient/Klient/Klient.Android/Resources/drawable/Obraz4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 361 B |
@ -7,15 +7,14 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="#ffbdd7f0">
|
android:background="#ffbdd7f0">
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backHistory"
|
android:id="@+id/backHistory"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToProfile" />
|
android:onClick="GoToProfile" />
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -39,15 +39,14 @@
|
|||||||
android:textColor="#ff000000"
|
android:textColor="#ff000000"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_centerHorizontal="true" />
|
android:layout_centerHorizontal="true" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backInformation"
|
android:id="@+id/backInformation"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToMainScreenFromInformation" />
|
android:onClick="GoToMainScreenFromInformation" />
|
||||||
|
|
||||||
|
@ -60,15 +60,14 @@
|
|||||||
android:text="Zaloguj"
|
android:text="Zaloguj"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:foregroundGravity="center" />
|
android:foregroundGravity="center" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backLogowanie"
|
android:id="@+id/backLogowanie"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToStart"/>
|
android:onClick="GoToStart"/>
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -27,15 +27,14 @@
|
|||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:layout_below="@id/SendPhoto"
|
android:layout_below="@id/SendPhoto"
|
||||||
android:textColor="#ffd60000" />
|
android:textColor="#ffd60000" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backZdjecie"
|
android:id="@+id/backZdjecie"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToPoLogowaniu" />
|
android:onClick="GoToPoLogowaniu" />
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -35,7 +35,8 @@
|
|||||||
android:id="@+id/textView1"
|
android:id="@+id/textView1"
|
||||||
android:textColor="#ffb1d5f8"
|
android:textColor="#ffb1d5f8"
|
||||||
android:layout_alignParentRight="true"
|
android:layout_alignParentRight="true"
|
||||||
android:layout_alignParentBottom="true" />
<TextView
|
android:layout_alignParentBottom="true" />
|
||||||
|
<TextView
|
||||||
android:text="Poszukiwacz 2021"
|
android:text="Poszukiwacz 2021"
|
||||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
@ -43,7 +44,8 @@
|
|||||||
android:id="@+id/text1"
|
android:id="@+id/text1"
|
||||||
android:textColor="#ff000000"
|
android:textColor="#ff000000"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_centerHorizontal="true" />
<Button
|
android:layout_centerHorizontal="true" />
|
||||||
|
<Button
|
||||||
android:text="Back"
|
android:text="Back"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
@ -53,4 +55,6 @@
|
|||||||
android:background="#ff0b31c8"
|
android:background="#ff0b31c8"
|
||||||
android:textColor="#fffcfcfc"
|
android:textColor="#fffcfcfc"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToRegister" />
</RelativeLayout>
|
android:onClick="GoToRegister" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
@ -15,15 +15,14 @@
|
|||||||
android:textColor="#ff000000"
|
android:textColor="#ff000000"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_centerHorizontal="true" />
|
android:layout_centerHorizontal="true" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backPomocZdjecie"
|
android:id="@+id/backPomocZdjecie"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToPoLogowaniu" />
|
android:onClick="GoToPoLogowaniu" />
|
||||||
<TextView
|
<TextView
|
||||||
@ -31,6 +30,7 @@
|
|||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/textView1" />
|
android:id="@+id/textView1"
|
||||||
|
android:textColor="#ff000000" />
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
@ -102,15 +102,14 @@
|
|||||||
android:textColor="#ff000000"
|
android:textColor="#ff000000"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_centerHorizontal="true" />
|
android:layout_centerHorizontal="true" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backProfil"
|
android:id="@+id/backProfil"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToPoLogowaniu" />
|
android:onClick="GoToPoLogowaniu" />
|
||||||
<Button
|
<Button
|
||||||
|
@ -80,6 +80,8 @@
|
|||||||
android:layout_height="58.0dp"
|
android:layout_height="58.0dp"
|
||||||
android:minWidth="25px"
|
android:minWidth="25px"
|
||||||
android:minHeight="25px"
|
android:minHeight="25px"
|
||||||
|
android:textColor="#ff000000"
|
||||||
|
android:textColorHint="#ff6c6767"
|
||||||
android:id="@+id/NewPassword"
|
android:id="@+id/NewPassword"
|
||||||
android:inputType="none|textPassword" />
|
android:inputType="none|textPassword" />
|
||||||
</android.support.design.widget.TextInputLayout>
|
</android.support.design.widget.TextInputLayout>
|
||||||
@ -100,7 +102,8 @@
|
|||||||
android:minHeight="25px"
|
android:minHeight="25px"
|
||||||
android:id="@+id/RepeatPassword"
|
android:id="@+id/RepeatPassword"
|
||||||
android:inputType="none|textPassword"
|
android:inputType="none|textPassword"
|
||||||
android:textColor="#ff000000" />
|
android:textColor="#ff000000"
|
||||||
|
android:textColorHint="#ff6c6767" />
|
||||||
</android.support.design.widget.TextInputLayout>
|
</android.support.design.widget.TextInputLayout>
|
||||||
<android.support.design.widget.TextInputLayout
|
<android.support.design.widget.TextInputLayout
|
||||||
android:id="@+id/LayoutNewLogin"
|
android:id="@+id/LayoutNewLogin"
|
||||||
@ -160,15 +163,14 @@
|
|||||||
android:textColor="#fffcfcfc"
|
android:textColor="#fffcfcfc"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="HelpRegisterScreen" />
|
android:onClick="HelpRegisterScreen" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backRejestracja"
|
android:id="@+id/backRejestracja"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToStart" />
|
android:onClick="GoToStart" />
|
||||||
|
|
||||||
|
@ -28,15 +28,14 @@
|
|||||||
android:textColor="#ff393939"
|
android:textColor="#ff393939"
|
||||||
android:linksClickable="true"
|
android:linksClickable="true"
|
||||||
android:autoLink="web" />
|
android:autoLink="web" />
|
||||||
<Button
|
<ImageButton
|
||||||
android:text="Back"
|
android:src="@drawable/obraz4"
|
||||||
android:layout_width="38.5dp"
|
android:layout_width="38.5dp"
|
||||||
android:layout_height="35.0dp"
|
android:layout_height="35.0dp"
|
||||||
android:id="@+id/backToSendPhoto"
|
android:id="@+id/backToSendPhoto"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:background="#ff0b31c8"
|
android:background="#ffbdd7f0"
|
||||||
android:textColor="#fffcfcfc"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:onClick="GoToPoLogowaniu" />
|
android:onClick="GoToPoLogowaniu" />
|
||||||
<TextView
|
<TextView
|
||||||
|
Loading…
Reference in New Issue
Block a user