Note that there are some explanatory texts on larger screens.

plurals
  1. POSetting width of textview in a LinearLayout
    primarykey
    data
    text
    <p>I am using a header for a Listview. ListView header has three columns. Say a,b,c. I am using two LinearLayouts to design ListView header as shown below:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="40dip" android:padding="0dip"&gt; &lt;LinearLayout android:orientation="horizontal" android:background="#1e90ff" android:layout_width="0dip" android:layout_weight="1" android:padding="5dip" android:layout_height="40dip"&gt; &lt;TextView android:id="@+id/a" android:layout_width="fill_parent" android:layout_height="fill_parent" android:textColor="#000000" android:layout_weight="1" android:gravity="center_vertical" android:text="@string/a" /&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:textColor="#000000" android:layout_weight="1" android:gravity="center_vertical" android:id="@+id/b" android:singleLine="true" android:text="@string/b" /&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:textColor="#000000" android:layout_weight="1" android:gravity="center_vertical" android:id="@+id/c" android:singleLine="true" android:text="@string/c" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>Now i want to fix the width of columns a, b, c respectively. How to set width of these columns ? Again, is it a good practise to use LinearLayout for this ? Please Advise.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload