android - How to get ImageView over boundaries of LinearLayout? -
i have 3 imageviews on linearayout
but want have this:
is possible make in linear layout?
hope kind of idea you..
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:background="#d67070"> <relativelayout android:id="@+id/relative_layout_top" android:layout_width="match_parent" android:layout_height="wrap_content" > </relativelayout> </linearlayout> <linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:background="#70a7d6"> <relativelayout android:id="@+id/relative_layout_bottom" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@+id/relative_layout_top" > </relativelayout> </linearlayout> </linearlayout> <button android:id="@+id/bt_atoz" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerhorizontal="true" android:layout_centervertical="true" android:text="button" android:textcolor="#000000" android:layout_marginright="10dp" android:background="#ffffff" /> </relativelayout>
Comments
Post a Comment