Я новичок в мире android, и я хотел бы сделать интерфейс для Android такого рода:
http://android.appstorm.net/wp-content/uploads/2011/03/picplz-sc.jpg
(экран слева)
Тем не менее, я добавил две иконки в свой XML, но эти значки не рядом ... (не в одной строке)
xml выглядит следующим образом:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#ABABAB">
<ImageView android:layout_width="fill_parent" android:id="@+navigate/title"
android:layout_height="wrap_content"
android:src="@drawable/myimg" android:layout_marginTop="30px" />
<ImageView
android:layout_width="fill_parent" android:id="@+navigate/bookings"
android:layout_height="wrap_content"
android:src="@drawable/inventory" android:layout_marginTop="20px" android:layout_marginRight="150px"
/>
<ImageView
android:layout_width="fill_parent" android:id="@+navigate/picture"
android:layout_height="wrap_content"
android:src="@drawable/picture" android:layout_marginLeft="150px"
/>
</LinearLayout>
У кого-нибудь есть хороший учебник по верстке, пожалуйста? :)
Спасибо за любую помощь