android - TableLayout looks fine on emulator but not on device -
android - TableLayout looks fine on emulator but not on device - i'm running code on emulator android 2.2 , works fine. when set on device (galaxy s 2.3.3) main screen should show list of elements in table - stays blank. toasts shown , header app_name the table made of button (defined in xml) , list of elements loaded db. main.xml <?xml version="1.0" encoding="utf-8"?> <scrollview xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <tablelayout android:id="@+id/tablelayoutmain" android:layout_width="match_parent" android:layout_height="wrap_content"> <tablerow> <button android:text="@string/add_button" android:id="@+id/add_button" android:layout_height="wrap_content" android:layout_margint...