私のアプリケーションでは、ギャラリービューを使用して画像を表示しています..私の要件は、画像を表示する必要があり、その画像にテキストを表示する必要があるということです..すべてを実行し、正常に動作しています..しかし私の問題は、画像の間に「スペース」が入っていることです...
実際には、次のような出力が必要です。
---- ---- -----
img1 Text img2 TExt img3 text
---- ----- ----
しかし、私は次のような出力を得ています:
---- ---- -----
img1 Text img2 TExt img3 text
---- ----- ----
私のレイアウトファイルは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
/>
<TextView
android:layout_toRightOf="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/homesectiongallery"
android:textColor="#CCCCCC"
android:paddingTop="15dp"
android:paddingRight="10dp"
android:textStyle="bold"
/>
</RelativeLayout>
<View android:background="#B3B3B3" android:layout_width = "fill_parent" android:layout_height="1dip" android:layout_marginTop="5px"/>
</LinearLayout>
レイアウトを保持している私のギャラリー:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Gallery
android:id="@+id/Gallerysection"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</Gallery>
<ListView android:id="@+id/list" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>
これを解決するのを手伝ってください..事前に感謝..