Skip to content

Instantly share code, notes, and snippets.

@silwar
silwar / equal_divider_layout.xml
Created February 8, 2017 10:53
This is Android layout file to show how to divide views equally using Relativelayout. This better practice than using layout weights
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/vertical_divider"
android:layout_width="0dp"
android:layout_height="match_parent"