The following code incorrectly (in my view) places the text left-
justified, and the button is in the center, horizontally.  Why is
this?



<LinearLayout
                            android:layout_width="fill_parent"
                            android:layout_height="wrap_content"
                                android:layout_marginLeft="12dip"
                                android:layout_gravity="center_horizontal"
                            android:padding="6dip"
                            android:orientation="vertical"
                                
android:background="@android:drawable/alert_light_frame" >

                        <TextView
                                        android:layout_marginTop="8dip"
                                        android:textColor="#000000"
                                        
android:layout_gravity="center_horizontal"
                                        android:text="This actually comes out 
left justified..   why?"
                                        android:layout_width="fill_parent"
                                        android:layout_height="wrap_content"/>

                            <Button android:id="@+id/google_voice_button"
                                android:layout_gravity="center_horizontal"
                                android:layout_marginBottom="8dip"
                                                android:textColor="#000000"
                                                
android:layout_width="wrap_content"
                                                
android:layout_height="wrap_content"/>
                        </LinearLayout>

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

Reply via email to