
is it possible if change the direction when I add view in LinearLayout to the left?

is it possible if change the direction when I add view in LinearLayout to the left?
Try the layoutDirection attribute. In your LinearLayout:
android:layoutDirection="rtl"
"rtl" in this case means "right to left."
The implementation for what you're trying to do would consist of one vertical LinearLayout with two horizontal LinearLayouts as its children.