I have two linear layouts inside a parent linear layout. all horizontal. I want all of l_child
to show and part of r_child
to show; while the rest of r_child
will be off-screen to the right. How do I accomplish that?
<LinearLayout
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/l_child"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:id="@+id/r_child"
android:orientation="horizontal" >
</LinearLayout>
</LinearLayout>