Paste
Pasted as XML by Khan ( 14 years ago )
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer_bar"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:layout_gravity="bottom">
<LinearLayout
android:id="@+id/footer_bar_bg"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:background="@drawable/footer_bar_bg" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true">
<Button
android:id="@+id/footer_feature_deal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_gravity="left"
android:layout_toLeftOf="@+id/sepview1"
android:layout_weight="0.35"
android:text="Featured Deals"
android:background="@null"
android:textColor="@color/White" />
<View
android:id="@+id/sepview1"
android:layout_width="1dp"
android:layout_height="50dp"
android:background="@color/SeperatorFooterTab" />
<Button
android:id="@+id/footer_deal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_gravity="center"
android:layout_toRightOf="@+id/sepview1"
android:layout_weight="0.4"
android:text="Deals"
android:background="@null"
android:textColor="@color/White" />
<View
android:id="@+id/sepview2"
android:layout_width="1dp"
android:layout_height="50dp"
android:background="@color/SeperatorFooterTab" />
<Button
android:id="@+id/footer_my_account"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:layout_toRightOf="@+id/sepview2"
android:layout_weight="0.35"
android:text="My Account"
android:background="@null"
android:textColor="@color/White" />
</LinearLayout>
</RelativeLayout>
Revise this Paste