This is my first app/project ever in android, I'm learning on the fly. I have a warning in lint "youramounts.xml has more than 80 views, bad for performance" I know the logic behind the matter just not how to correct it. How do i correct this error? Should i have a different layout other than the linear layout?
I have read several post's on list view and grid view but I am not understanding how to apply them to my app. The image shown is how i want the app to look. I have started to experiment with both list and grid views. I currently replaced the first 2 table rows with grid views just to see what happens, I'm clueless at this point, so I have deleted the grid views and reverted back to table row's. But here is the coding for the layout and the table row's setup, I have 11 table row's and a button that are not shown in the coding ! Thanks for any input in advance!
[1]: https://i.stack.imgur.com/W`<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TableRow
android:id="@+id/EjuiceNicotine"
android:layout_width="wrap_content"
android:layout_height="50dp" >
<TextView
android:id="@+id/EjuiceNicotineText"
android:layout_width="145dp"
android:layout_height="wrap_content"
android:text="@string/e_juice_nicotine" />
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pg" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Percent" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/vg" />
<EditText
android:id="@+id/EditText01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
<TextView
android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Percent" />
<EditText
android:id="@+id/editText2"
android:layout_width="27dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="number" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/mg" />
</TableRow>