Facebook
From Smelly Owl, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 224
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.     xmlns:android="http://schemas.android.com/apk/res/android"
  4.     xmlns:app="http://schemas.android.com/apk/res-auto"
  5.     xmlns:tools="http://schemas.android.com/tools"
  6.     tools:context="com.example.aleksanderpaliszewski.lab3.MainActivity"
  7.     android:orientation="horizontal"
  8.     android:layout_height="fill_parent"
  9.     android:layout_width="fill_parent">
  10.  
  11.     <LinearLayout
  12.         android:layout_width="wrap_content"
  13.         android:layout_height="wrap_content"
  14.         android:orientation="vertical">
  15.  
  16.         <Button
  17.             android:id="@+id/button"
  18.             android:layout_width="wrap_content"
  19.             android:layout_height="wrap_content"
  20.             android:text="Z Action bar" />
  21.  
  22.         <Button
  23.             android:id="@+id/button1"
  24.             android:layout_width="wrap_content"
  25.             android:layout_height="wrap_content"
  26.             android:text="Bez Action Bar" />
  27.  
  28.     </LinearLayout>
  29.  
  30.  
  31.  
  32.         <fragment
  33.             android:id="@+id/fragment"
  34.             android:name="com.example.aleksanderpaliszewski.lab3.Fragment1"
  35.             android:layout_width="match_parent"
  36.             android:layout_height="wrap_content"
  37.             android:layout_weight="1" />
  38.  
  39.  
  40.     <FrameLayout
  41.         android:id="@+id/kontener"
  42.  
  43.         android:layout_width="match_parent"
  44.         android:layout_height="match_parent"
  45.         android:layout_weight="1"
  46.         tools:layout_editor_absoluteX="124dp"
  47.         tools:layout_editor_absoluteY="16dp">
  48.  
  49.     </FrameLayout>
  50.  
  51.  
  52. </LinearLayout>
  53.  
  54.