Nesta parte dentro do FrameLayout os valores de android:layout_width teriam que ser 0dp, porém quando insiro esse valor nos dois FrameLayout eles apresentam erro. Alguém passou por isso também?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/esquerda"
android:layout_weight="2"/>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/direira"
android:layout_weight="1"/>
</LinearLayout>