I placed two Spinners using XML inside my TableLayout.
They both work, but they both look different. I gave the exact same
properties only changing the Id.
the one spinner has larger padding with radio buttons on the right and
the second one has almost no padding and no radio buttons. How can I
make them look the same. or why do they look different?
thanks for any help.

here is my xml if it helps.

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
android:id="@+id/widget28"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android";
>
<TextView
android:id="@+id/RailbaronTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/Rail_Baron_Lookup"
>
</TextView>
<Spinner
android:id="@+id/spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3px"
android:layout_marginBottom="3px"
android:layout_marginLeft="10px"
android:layout_marginRight="10px"
android:drawSelectorOnTop="true"
>
</Spinner>
<Spinner
android:id="@+id/spinner2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3px"
android:layout_marginBottom="3px"
android:layout_marginLeft="10px"
android:layout_marginRight="10px"
android:drawSelectorOnTop="true"
>
</Spinner>
<EditText
android:id="@+id/payoutAmount"
android:layout_height="wrap_content"
android:text="$0.00"
android:layout_width="fill_parent" android:layout_marginLeft="10px"
android:layout_marginRight="320px">
</EditText>

</TableLayout>

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to