Advertisement
Guest User

Untitled

a guest
May 20th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.62 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:orientation="vertical"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:background="#fdfdff"
  8.    tools:context=".SplashScreen">
  9.  
  10.     <TextView
  11.        android:id="@+id/text_view_id"
  12.        android:layout_width="fill_parent"
  13.        android:layout_height="wrap_content"
  14.        android:gravity="center"
  15.        android:textAppearance="?android:attr/textAppearanceLarge"
  16.        android:padding="10dp"
  17.        android:text="@string/select_language_title"
  18.        />
  19.  
  20.     <FrameLayout
  21.        android:layout_marginTop="16dp"
  22.        android:layout_gravity="center"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="match_parent">
  25.  
  26.         <ImageButton
  27.            android:id="@+id/select_language_cn"
  28.            android:background="@null"
  29.            android:contentDescription="@string/empty"
  30.            android:scaleType="centerInside"
  31.            android:src="@drawable/button_cn"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content" />
  34.  
  35.         <ImageButton
  36.            android:id="@+id/select_language_en"
  37.            android:background="@null"
  38.            android:contentDescription="@string/empty"
  39.            android:scaleType="centerInside"
  40.            android:src="@drawable/button_en"
  41.            android:layout_width="match_parent"
  42.            android:layout_height="wrap_content" />
  43.     </FrameLayout>
  44. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement