friends,
i have following three button in linear layout with width fill_parent
now how can i set width of these buttons to cover whole screen area equally?
any help would be appriciated.
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnReplyMessage"
android:gravity="left"
android:text="Reply" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnMarkAsUnread"
android:gravity="left"
android:text="Mark as unread" />
<ImageButton android:id="@+id/btnDeleteMessage"
android:src="@drawable/imgsearch"
android:gravity="right" android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
/>