unreachable statement with layout inflater
I am trying to convert my layout into java object using layoutInflater but when i try to get a reference to LayoutInflater Class i get an error "Statement unreachable" this is my code package test.app; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; /** * Created by HADDAD on 12/8/13. */ public class TonyAdapter extends ArrayAdapter<String> { Context context; public TonyAdapter(Context c, String[] titles) { super(c, R.layout.sinlge_row,R.id.textView , titles); this.context=c; }