Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. TableRow increseas when it has a button in it
  2. <?xml version="1.0" encoding="utf-8"?>
  3.        
  4. <TableRow
  5.     android:background="#FF0000"
  6.     android:layout_weight="0.8">
  7.     <TextView
  8.         android:text="Bottom menu" />
  9. </TableRow>
  10.  
  11. <TableRow
  12.     android:background="#0000FF"
  13.     android:layout_weight="0.2">
  14.     <Button
  15.        android:text="Prev"
  16.        android:layout_width="wrap_content"
  17.        android:layout_height="wrap_content" />
  18. </TableRow>