0

私のアプリケーションでは、データベースからのデータをリストビューに表示しています。そのリストビューには、列ごとに4つのテキストビューがあります.2番目のテキストビューの後、何かを示すために1つの画像(星)を追加する必要があります.しかし、すべてのテキストビューが画面のはるか後ろにあることを追加しようとすると、他のテキストビューに影響を与えずにそれを示すために。

私のディスプレイ:

30/07/2012 | gfgdh | 78 | 78
30/07/2012 | hjkk  | 45 | 45

私が欲しいのは:

30/07/2012 | ghgdh* |78  |78

私のXmlコードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/Layout1"
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:paddingTop="4dip"
     android:paddingBottom="6dip"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal"
     >     

     <TextView android:id="@+id/text1"      
        android:layout_width="80dip"
        android:layout_height="wrap_content"        
        /> 

     <View
            android:layout_width="1dp"
            android:layout_height="fill_parent"
            android:layout_marginLeft="2dp"
            android:layout_marginRight="2dp"
            android:background="#FF909090" />

     <TextView android:id="@+id/text3"          
        android:layout_width="60dip"
        android:layout_height="wrap_content"        
        android:layout_marginLeft="30dp"/>


     <View
            android:layout_width="1dp"
            android:layout_height="fill_parent"
            android:layout_marginLeft="2dp"
            android:layout_marginRight="2dp"
            android:background="#FF909090" />

       <TextView android:id="@+id/text5"            
        android:layout_width="60dip"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        />
       <View
            android:layout_width="1dp"
            android:layout_height="fill_parent"
            android:layout_marginLeft="2dp"
            android:layout_marginRight="2dp"
            android:background="#FF909090" />

        <TextView android:id="@+id/text7"           
        android:layout_width="60dip"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        />

          <TextView android:id="@+id/text9"         
        android:layout_width="60dip"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"            
         android:visibility="gone"/>


</LinearLayout>

前もって感謝します。

4

1 に答える 1

1

spannableString を作成して、TextView 内の好きな場所に画像を配置できます。または、使用できます

ImageSpan is = new ImageSpan(context, resId);
text.setSpan(is, index, index + strLength, 0);

ソース

于 2012-07-30T13:17:37.553 に答える