Advertisement
Goodiny777

activity_main.xml

Mar 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.40 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    android:layout_width="match_parent"
  3.    android:layout_height="match_parent"
  4.    android:orientation="vertical">
  5.  
  6.     <Button
  7.        android:id="@+id/first_btn"
  8.        android:layout_width="match_parent"
  9.        android:layout_height="wrap_content"
  10.        android:text="@string/first_btn_name" />
  11.  
  12.     <LinearLayout
  13.        android:id="@+id/layout_first"
  14.        android:layout_width="match_parent"
  15.        android:layout_height="match_parent"
  16.        android:layout_weight="1"
  17.        android:background="#ffffff"
  18.        android:orientation="vertical" />
  19.  
  20.     <LinearLayout
  21.        android:id="@+id/layout_second"
  22.        android:layout_width="match_parent"
  23.        android:layout_height="match_parent"
  24.        android:layout_weight="1"
  25.        android:background="#ffffff"
  26.        android:orientation="vertical">
  27.  
  28.         <TextView
  29.            android:id="@+id/countryName_text"
  30.            android:layout_width="wrap_content"
  31.            android:layout_height="wrap_content"
  32.            android:textSize="50dp" />
  33.     </LinearLayout>
  34.  
  35.     <LinearLayout
  36.        android:id="@+id/layout_third"
  37.        android:layout_width="match_parent"
  38.        android:layout_height="match_parent"
  39.        android:layout_weight="1"
  40.        android:background="#ffffff"
  41.        android:orientation="vertical" />
  42. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement