mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 21:27:48 +00:00
77 lines
2.7 KiB
XML
77 lines
2.7 KiB
XML
<wtf.watrbx.client.components.RbxLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/fragment_about_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/RbxGray3"
|
|
android:padding="10dp"
|
|
android:orientation="vertical" >
|
|
<!-- hack to avoid default focus bringing up keyboard -->
|
|
<View
|
|
android:layout_width="0px"
|
|
android:layout_height="0px"
|
|
android:layout_weight="0"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true" />
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="0.94"
|
|
android:contentDescription="@string/empty"
|
|
android:gravity="center"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/roblox_logo" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:ellipsize="none"
|
|
android:gravity="center"
|
|
android:text="@string/LegalText"
|
|
android:textColor="@color/shell_text_normal"
|
|
android:textSize="15sp" />
|
|
|
|
<View
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.41" />
|
|
|
|
<wtf.watrbx.client.AutoResizeTextView
|
|
android:id="@+id/fragment_about_terms_licenscing_privacy"
|
|
android:ellipsize="none"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="25dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="@string/lorem_ipsum_xl"
|
|
android:textColor="@color/shell_text_normal"
|
|
android:textSize="20sp" />
|
|
|
|
<wtf.watrbx.client.AutoResizeTextView
|
|
android:id="@+id/fragment_about_baseURL"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="25dp"
|
|
android:layout_weight="1"
|
|
android:ellipsize="none"
|
|
android:gravity="center"
|
|
android:text="@string/lorem_ipsum_xl"
|
|
android:textColor="@color/shell_text_normal"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/fragment_about_user_agent"
|
|
android:ellipsize="none"
|
|
android:singleLine="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_weight="0.2"
|
|
android:textIsSelectable="true"
|
|
android:text="@string/lorem_ipsum"
|
|
android:textColor="@color/shell_text_normal"
|
|
android:textSize="12sp" />
|
|
</wtf.watrbx.client.components.RbxLinearLayout>
|