Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.88 KB | None | 0 0
  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.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    tools:context="application.facturia.Display"
  9.    android:background="@drawable/hub"
  10.     orientation="vertical">
  11.        
  12.         <TextView
  13.             android:id="@+id/txt"
  14.             android:layout_width="wrap_content"
  15.             android:layout_height="0dp"
  16.             android:layout_weight="1"
  17.             android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  18.             android:text="TESTESTESTS"/>
  19.        
  20.         <LinearLayout
  21.             android:layout_width="wrap_content"
  22.             android:layout_height="0dp"
  23.             android:layout_weight="1"
  24.             android:orientation="horizontal">
  25.             <Button
  26.                 android:id="@+id/btnAjfact"
  27.                 android:layout_width="wrap_content"
  28.                 android:layout_height="wrap_content"
  29.                 android:background="@drawable/addfact"
  30.                 android:onClick="btnAddfacture" />
  31.            
  32.             <Button
  33.                 android:id="@+id/btnDelfact"
  34.                 android:layout_width="wrap_content"
  35.                 android:layout_height="wrap_content"
  36.                 android:background="@drawable/deletefact"
  37.                 android:onClick="btnDelfacture" />
  38.         </LinearLayout>
  39.         <LinearLayout
  40.             android:layout_width="wrap_content"
  41.             android:layout_height="0dp"
  42.             android:layout_weight="1"
  43.             android:orientation="horizontal">
  44.             <Button
  45.                 android:id="@+id/btnCheck"
  46.                 android:layout_width="wrap_content"
  47.                 android:layout_height="wrap_content"
  48.                 android:background="@drawable/deletefact"
  49.                 android:onClick="btnConsfacture" />
  50.             <Button
  51.                 android:id="@+id/btnModif"
  52.                 android:layout_width="wrap_content"
  53.                 android:layout_height="wrap_content"
  54.                 android:background="@drawable/modifyfact"
  55.                 android:onClick="btnModifyfacture"/>
  56.         </LinearLayout>
  57. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement