2016-07-08 21 views
0

Gridviewのテキストの隣に画像が表示されるようにしようとしています。テキストが十分に短いとうまくいくようですが、長すぎると、私が期待したようにラップするのではなく、画面からイメージをずらしてしまいます。ここでアンドロイドのGridviewの画像が画面外に移動する

は、私はそれを実行したときにアプリがどのように見えるかです: App Screen

私は私が欲しい、これが動作するように取得するために、タグのすべての方法を試してみたが、何も動作していないようにみえます。

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:paddingBottom="10dp"> 

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <GridLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:columnCount="2" 
     android:orientation="horizontal" 
     android:rowCount="1"> 

     <LinearLayout 
      android:id="@+id/linLayout" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerVertical="true" 
      android:layout_gravity="left" 
      android:layout_column="0" 
      android:layout_marginLeft="8dp" 
      android:layout_marginStart="8dp" 
      android:orientation="vertical" 
      > 

      <TextView 
       android:id="@+id/nameText" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="Restaurant" 
       android:textSize="20sp" /> 

      <TextView 
       android:id="@+id/resultText" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="Result" 
       android:textSize="16sp" /> 

     </LinearLayout> 

     <ImageView 
      android:id="@+id/imageView" 
      android:layout_column="1" 
      android:layout_width="100dp" 
      android:layout_height="100dp" 
      android:scaleType="fitXY" 
      android:layout_margin="5dp" 
      android:src="@drawable/ic_happy"/> 
     </GridLayout> 
    </ScrollView> 
</RelativeLayout> 
+0

RecyclerViewに切り替えることをお勧めします。 – Vucko

答えて

0

TextViewとImageViewの両方でandroid:layout_width="wrap_content"が問題になっていますか?

android:layout_width="match_parent"に変更し、両方にandroid:layout_weight="1"を追加してください。

関連する問題