Advertisement
Guest User

Untitled

a guest
May 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TableLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    android:id="@+id/TableLayout2"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:paddingBottom="@dimen/activity_vertical_margin"
  8.    android:paddingLeft="@dimen/activity_horizontal_margin"
  9.    android:paddingRight="@dimen/activity_horizontal_margin"
  10.    android:paddingTop="@dimen/activity_vertical_margin"
  11.    android:shrinkColumns="*"
  12.    android:stretchColumns="*" >
  13.  
  14.     <TableRow
  15.        android:layout_width="match_parent"
  16.        android:layout_height="match_parent"
  17.        android:background="@drawable/tlo_wiersza" >
  18.  
  19.         <TextView
  20.            android:text="@string/producent_napis"
  21.            android:id="@+id/producentText"
  22.            android:layout_column="0" />
  23.  
  24.         <TextView
  25.            android:layout_width="wrap_content"
  26.            android:layout_height="wrap_content"
  27.            android:text="@string/model_napis"
  28.            android:id="@+id/modelText"
  29.            android:layout_column="1" />
  30.     </TableRow>
  31. </TableLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement