Back to project page sdl_tester_android.
The source code is released under:
Copyright (c) 2014, Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project sdl_tester_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.livio.sdl.dialogs; /*from ww w. j av a 2s .c om*/ import java.util.List; import android.content.Context; import android.widget.ListView; import com.livio.sdl.R; import com.livio.sdl.SdlImageItem; import com.livio.sdl.adapters.SdlImageAdapter; public abstract class BaseImageListDialog extends BaseAlertDialog { protected ListView listview; public BaseImageListDialog(Context context, String title, List<SdlImageItem> imagesNotAdded) { super(context, title, R.layout.listview); SdlImageAdapter adapter = new SdlImageAdapter(context, imagesNotAdded); listview.setAdapter(adapter); } }