У меня возникла следующая проблема: я создал форму с галереей, в галерее вместо изображений содержатся элементы одного из моих классов, все внутри каждого элемента галереи отображается отлично. Я удалил пробел между изображениями, используя:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery android:id="@+id/galleryid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:spacing="0dip"
android:padding="0dip"
android:layout_weight="1" />
предметы галереи:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="75dip" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center_horizontal" android:background="#ffffff">
<TextView android:id="@+id/frame_number" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="-" android:textSize="12dip" android:textColor="#ffffff" android:background="#000000" android:gravity="center" />
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="horizontal" android:gravity="center_horizontal">
<TextView android:id="@+id/frame_shot1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="-" android:textSize="18dip" android:textColor="#000000" />
<TextView android:id="@+id/frame_shot2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="-" android:textSize="18dip" android:textColor="#000000" />
</LinearLayout>
<TextView android:id="@+id/frame_total" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="---" android:textSize="38dip" android:textColor="#000000"/>
</LinearLayout>
buuuuuuuuuuuuuuuuut, у меня возникла проблема, в начале и в конце галереи есть пустое пространство без элементов. дело в том, что в моей галерее есть много элементов, которые вы можете прокручивать по горизонтали, но я хочу избавиться от этих пробелов, поэтому самое первое, что находится слева от галереи, это первый элемент, и самый последний, когда вы прокручиваете с правой стороны - правильный предмет.
Edit 08/16 Все еще с той же проблемой в проекте, здесь я оставляю изображение того, что именно я пытаюсь избавить, это черное пространство в начале (также в конце галерея на другой стороне)