0

リスト ビューの上部に小さなホーム アイコン イメージを追加しようとしています。以下に、アダプターのコードを示します。動的テキストの設定には完全に機能しますが、画像を追加したい場合は失敗します。

実行時エラーは発生しません。画像が読み込まれていないだけです。

参照されている画像は 35x35 の png ファイルです。

これを実装する方法は?私はアンドロイドが初めてです。私を導いてください。

      LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
      viewList = Nexttopic.this.getLayoutInflater().inflate(R.layout.activity_nexttopic, null);
      dialogMarketList = new Dialog(Nexttopic.this);
      dialogMarketList.requestWindowFeature(Window.FEATURE_NO_TITLE);
      dialogMarketList.setContentView(viewList);
      dialogMarketList.show();     
      lvForDialog = (ListView) viewList.findViewById(R.id.List_view);
      lvForDialog.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL);
      ArrayAdapter<String> adapter = (new ArrayAdapter<String>(Nexttopic.this, R.layout.row_topic, R.id.child_row,tnamelist));
      ImageView home = (ImageView) findViewById(R.id.hme);
      lvForDialog.setAdapter(adapter); 

row_topic xml ファイル

       <?xml version="1.0" encoding="utf-8"?>  
       <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent" 
           android:weightSum="1">
         <ImageView      android:id="@+id/hme"  
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" 
            android:layout_above="@+id/child_row"
            android:src="@drawable/homex"/>
          <TextView 
            android:id="@+id/child_row"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="@android:color/white"
            android:gravity="center_vertical"
            android:paddingLeft="6dip"
            android:minHeight="?android:attr/listPreferredItemHeight"
            android:background="@drawable/bg"/>
            </RelativeLayout>

activity_nexttopic

              <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:android1="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".Nexttopic" >

        <ListView
        android1:id="@+id/List_view"
        android1:layout_width="match_parent"
        android1:layout_height="250dp"
        android1:layout_centerHorizontal="true"
        android1:layout_centerVertical="true"
        android:background="@drawable/bg">
        </ListView>
        </RelativeLayout>
4

0 に答える 0