/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/res/layout/info_page.xml
62 строки
3 KB
Dmitry Donskoy
Added user licence agreement confirmation for welcome screen
21 ноя 2019, 13:23
21 ноя 2019, 13:23
58e7ca5
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <com.mapswithme.maps.widget.HeightLimitedFrameLayout android:layout_above="@id/button_container" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:layout_gravity="center"> <ImageView android:id="@+id/iv__image" android:layout_width="@dimen/info_page_image_size" android:layout_height="@dimen/info_page_image_size" android:layout_marginBottom="@dimen/margin_base" android:layout_gravity="center_horizontal" android:tag="@string/tag_height_limited" tools:src="@drawable/img_welcome"/> <TextView android:id="@+id/tv__title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/margin_double" android:layout_marginRight="@dimen/margin_double" android:layout_marginBottom="@dimen/margin_base" android:textSize="@dimen/text_size_toolbar" android:textAppearance="@style/MwmTextAppearance.Title" android:layout_gravity="center_horizontal" android:gravity="center_horizontal" android:fontFamily="@string/robotoMedium" tools:text="@string/onboarding_welcome_title" tools:targetApi="jelly_bean"/> <TextView android:id="@+id/tv__subtitle1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/margin_double" android:layout_marginRight="@dimen/margin_double" android:layout_marginBottom="@dimen/margin_base" android:textSize="@dimen/text_size_body_3" android:textAppearance="@style/MwmTextAppearance.Body1.Secondary" android:layout_gravity="center_horizontal" android:gravity="center_horizontal" tools:text="@string/onboarding_welcome_first_subtitle"/> </LinearLayout> </com.mapswithme.maps.widget.HeightLimitedFrameLayout> <include android:id="@+id/button_container" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_marginStart="@dimen/margin_base_plus" android:layout_marginEnd="@dimen/margin_base_plus" android:layout_marginBottom="@dimen/margin_base_plus" layout="@layout/welcome_buttons_vertical_container"/> </RelativeLayout>