android spinner width problem?
        Posted  
        
            by UMMA
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by UMMA
        
        
        
        Published on 2010-05-31T06:22:26Z
        Indexed on 
            2010/05/31
            6:52 UTC
        
        
        Read the original article
        Hit count: 600
        
dear friends,
i have created following layout.
<TableLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:orientation="horizontal"
        >
        <TableRow>
<TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="Post As" />
<Spinner 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/ddlPostAs"
        />
        </TableRow>
        <TableRow>
<TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="Expires In" />
<Spinner 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/ddlExpiryOn"
        />
</TableRow>
</TableLayout>
in which android spinner changes its width according to the data. i want to stop it.
can any one guide me how to achieve this?
any help would be appriciated.
© Stack Overflow or respective owner