Do all widgets in an Android layout file require layout_width and layout_height ?
- by Eno
I have a ListView composed of LinearLayouts. Inside each is an ImageView, TextView and another ImageView laid out horizontally:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
…