mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
* xml work done * testing * copyright popup added local * minor changes * minor changes 2 * picture removed
This commit is contained in:
parent
c626f97fb9
commit
824a82ad2a
3 changed files with 54 additions and 0 deletions
39
app/src/main/res/layout/popup_for_copyright.xml
Normal file
39
app/src/main/res/layout/popup_for_copyright.xml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/popup_relative_layout"
|
||||
android:layout_width="350dp"
|
||||
android:layout_height="350dp"
|
||||
android:layout_gravity="center">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/warning"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="37dp"
|
||||
android:text="@string/warning"
|
||||
android:textColor="#FF0202"
|
||||
android:textSize="34sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/copyright_messege"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/warning"
|
||||
android:layout_marginTop="21dp"
|
||||
android:text="@string/copyright_popup"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/button_ok"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/copyright_messege"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="37dp"
|
||||
android:text="@string/ok" />
|
||||
</RelativeLayout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue