I have tried setting a couple of different attributes to make the size
(height) of the AutoCompleteTextView smaller than the default.  I've
been about to use a smaller font, but there are still grey bars above
and below the text entry area within the edit box and I don't know how
to get rid of them.  I have an image to paste but that doesn't appear
to be possible here.

The code to reproduce is here:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:stretchColumns="1" >
    <TableRow>
        <TextView
            android:id="@+id/gcLocation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:text="Prompt"
            android:textSize="6pt"
            android:textStyle="bold"
            android:typeface="sans" />

        <AutoCompleteTextView
            android:id="@+id/scGCPrompt"
            android:layout_width="fill_parent"
            android:layout_height="35dp"
            android:layout_margin="0dp"
            android:drawablePadding="0dp"
            android:padding="0dp"
            android:textSize="6pt"
            android:textStyle="bold"
            android:typeface="sans" />
    </TableRow>
</TableLayout>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to