I want to insert a new line in my layout. like In the first line i have 4 simple TextViews
and on the second line i want to have buttons ..
Searching throw the internet i got answer like this:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent">
</LinearLayout>
</LinearLayout>
But when im looking at the a Desinger im getting all wigets on the same line
Where im a wrong ?
Please try this……