Facebook
From Social Kitten, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 120
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     tools:context=".MainActivity"
  8.  
  9.     android:orientation="vertical">
  10.  
  11.  
  12.  
  13.     <ImageView
  14.         android:layout_width="match_parent"
  15.         android:layout_height="0dp"
  16.         android:layout_weight="8"
  17.         android:src="@drawable/stacja"
  18.         android:contentDesciption="tutaj opis"
  19.         android_scaleType="centerCrop"
  20.         />
  21.     <TextView
  22.         android:layout_width="match_parent"
  23.         android:layout_height="0dp"
  24.         android:layout_weight="1"
  25.         android:background="@android:color/darker_gray"
  26.         android:text="Stacja robocza!"
  27.         android:textSize="45sp"
  28.         android:textAlignment="center"
  29.         />
  30.     <TextView
  31.         android:layout_width="match_parent"
  32.         android:layout_height="0dp"
  33.         android:layout_weight="1"
  34.         android:background="@android:color/darker_gray"
  35.         android:text="SunBlade 150"
  36.         android:textSize="25sp"
  37.         android:textAlignment="center"
  38.         />
  39.     </Linearlayout>