I solved, this my correct layout : See here for an very good explanation:
http://stackoverflow.com/questions/4605855/multiple-screen-support <?xml version="1.0" encoding="UTF-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:id="@+id/cities_main_layout" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ListView android:id="@+id/citieslist" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_above="@+id/cities_button_layout" /> <LinearLayout android:id="@+id/cities_button_layout" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_alignParentBottom="true" > <Button android:id="@+id/bycountry" android:background="@drawable/buttonmarket" android:text="@string/button_bycountry" android:layout_width="105dp" android:layout_height="wrap_content" /> <Button android:id="@+id/top10" android:background="@drawable/buttonmarket" android:text="@string/button_top10" android:layout_width="105dp" android:layout_height="wrap_content" /> <Button android:id="@+id/recommended" android:background="@drawable/buttonmarket" android:text="@string/button_recommended" android:layout_width="105dp" android:layout_height="wrap_content" /> </LinearLayout> </RelativeLayout> On 5 Gen, 17:22, pedr0 <[email protected]> wrote: > I don't know why..but if I wrote a complete HTTP address I cannot > post. > > On 5 Gen, 16:51, TreKing <[email protected]> wrote: > > > > > > > > > On Wed, Jan 5, 2011 at 9:42 AM, pedr0 <[email protected]> wrote: > > > I cannot post link > > > Why not? > > > > ...you have to change (dot) to "." manually. > > > When asking for help, it's in your best interest to make it as easy as > > possible for others to help you. Making the reader manually fix your links > > is enough to make most people not give you post a second look. > > > --------------------------------------------------------------------------- > > ---------------------- > > TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago > > transit tracking app for Android-powered devices -- 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

