2011-09-29 12 views
0

ListActivity를 사용하는 데 문제가 있습니다. ListActivity 클래스에서 Activity 클래스로 변경하면 잘 동작합니다. 하지만 문제는 onListItemClick을 구현하는 방법입니다. 그것은 약간의 실수 일지 모르지만 나는 그것을 추적 할 수 없습니다.ListActivity에서 ListView를 사용하는 중 오류가 발생했습니다.

public class Warehouse extends ListActivity { 

    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     System.out.println("Inside Warehouse"); 
     setContentView(R.layout.warehous); 

     LinearLayout linear = (LinearLayout) findViewById(R.id.linearfullview); 
     drawable = setBitMap(background_image); 
     linear.setBackgroundDrawable(drawable); 
    String[] names = new String[] { "Inventory Ageing", 
       "Inventory Carring Cost", "Inventory Turns" }; 


     LinearLayout linearList = (LinearLayout) findViewById(R.id.linearlist); 
     drawable = setBitMap(list_image); 
     linearList.setBackgroundDrawable(drawable); 
     this.setListAdapter(new ArrayAdapter<String>(this,R.layout.warehouse_list,names));   
     // ListView lv = getListView(); lv.setTextFilterEnabled(true); 

    } 

    public Drawable setBitMap(String imagename) { 
     Bitmap image = BitmapFactory.decodeStream(getClass() 
       .getResourceAsStream(("/com/image/" + imagename + ".png"))); 
     drawable = new BitmapDrawable(image); 
     return drawable; 
    } 

    protected void onListItemClick(ListView l, View v, int position, long id) { 
     super.onListItemClick(l, v, position, id); 
     Object o = this.getListAdapter().getItem(position); 
     String keyword = o.toString(); 

     } 
     } 
    } 

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_height="fill_parent" android:orientation="horizontal" 
    android:layout_width="fill_parent"> 
    <LinearLayout android:layout_width="fill_parent" 
     android:id="@+id/linearfullview" android:layout_height="400sp" 
     android:layout_alignParentTop="true" /> 

    <LinearLayout android:layout_width="wrap_content" 
     android:layout_height="180sp" android:layout_alignParentBottom="true" 
     android:layout_marginTop="20sp"> 


     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:id = "@+id/linearlist" android:layout_height="wrap_content" android:layout_width="wrap_content" 
      android:paddingLeft="2dp" android:paddingRight="2dp" android:gravity="bottom" 
      android:layout_marginTop="30dp"> 
      <ListView android:id="@android:id/list" android:layout_width="100dip" android:layout_height="wrap_content"></ListView> 
      </LinearLayout> 

     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_height="wrap_content" android:layout_width="wrap_content" 
      android:paddingLeft="2dp" android:paddingRight="2dp" 
      android:paddingTop="4dp" android:gravity="bottom" 
      android:layout_marginTop="30dp"> 
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_height="wrap_content" android:id="@+id/linearFirst" 
       android:layout_alignParentLeft="true" android:layout_width="wrap_content" 
       android:paddingLeft="2dp" android:paddingRight="2dp" 
       android:paddingTop="4dp" android:gravity="bottom" 
       android:layout_marginTop="30dp" android:visibility="invisible"> 
       <com.widget.WheelView 
        android:id="@+id/firstWheel" android:layout_height="wrap_content" 
        android:layout_width="100dp" /> 
      </LinearLayout> 
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_height="wrap_content" android:id="@+id/linearSecond" 
       android:layout_width="wrap_content" android:paddingLeft="2dp" 
       android:paddingRight="2dp" android:layout_alignParentRight="true" 
       android:paddingTop="4dp" android:gravity="bottom" 
       android:layout_marginTop="30dp" android:visibility="invisible"> 
       <com.widget.WheelView 
        android:id="@+id/secondWheel" android:layout_height="wrap_content" 
        android:layout_width="100dp" /> 
      </LinearLayout> 
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_height="wrap_content" android:id="@+id/linearThird" 
       android:layout_width="wrap_content" android:paddingLeft="2dp" 
       android:paddingRight="2dp" android:paddingTop="4dp" android:gravity="bottom" 
       android:layout_marginTop="30dp" android:layout_alignParentLeft="true" 
       android:visibility="invisible"> 
       <com.widget.WheelView 
        android:id="@+id/thirdWheel" android:layout_height="wrap_content" 
        android:layout_width="200dp" /> 
      </LinearLayout> 
     </RelativeLayout> 
    </LinearLayout> 
</RelativeLayout> 

답변

0

당신이 ListActivity 다음 당신은 당신이

public class Warehouse extends Activity implements onListItemClick 

대신 사용할 수 @+android:id/list

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_height="fill_parent" android:orientation="horizontal" 
    android:layout_width="fill_parent"> 
    <ListView android:id="@android:id/list" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" /> 
... 
+0

감사을 통해 UR 사소한 실수가있다. – neha

0

으로 main.xml에있는 목록보기를 취해야합니다 확장하는 경우?

+0

아니요 불가능합니다. 나는 그것을 구현하려고 노력했다. – neha

관련 문제