How To Show A Button Half On One Layout And Half On Another Layout In Android?
I want to design a layout like the image below: I tried to do it using Relative layout but I did not come up with a solution. It should be in the same position for all device scre
Solution 1:
You can put the Button
declaration outside of your RelativeLayout
relative_layout_bottom
and then place it where you like.
For example: Edit:
<?xml version="1.0" encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent" ><RelativeLayoutandroid:id="@+id/relative_layout_top"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="@drawable/obaz" ></RelativeLayout><Buttonandroid:id="@+id/bt_atoz"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:layout_centerVertical="true"android:background="@drawable/button_active" /><RelativeLayoutandroid:id="@+id/relative_layout_bottom"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_below="@+id/relative_layout_top"android:background="@drawable/obaz2" ></RelativeLayout></RelativeLayout>
Post a Comment for "How To Show A Button Half On One Layout And Half On Another Layout In Android?"