I take a listview and buttons inside a tab
but I can break both.
I try to use LinearLayout , TableRow .... but nothing are well for what I want
1 time my button move
2 time my list move also
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_height="fill_parent"
- android:layout_width="fill_parent"
- android:background="@drawable/text_bleu">
- <ListView
- android:id="@+id/listVoicemail"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/effacer"
- android:layout_width="110px"
- android:layout_height="50px"
- android:text="Effacer"
- android:textStyle="bold"
- android:layout_x="180px"
- android:layout_y="315px">
- </Button>
- <Button
- android:id="@+id/repondre"
- android:layout_width="110px"
- android:layout_height="50px"
- android:text="Répondre"
- android:textStyle="bold"
- android:layout_x="30px"
- android:layout_y="315px">
- </Button>
- </AbsoluteLayout>
Parsed in 0.004 seconds, using GeSHi 1.0.8.4
Help me to add the better "</...Layout>" please
Dayn




