2016-09-25 58 views
1

我有两个POJO类,即PostFeedSessionFeed如何制作不同类型对象的ArrayList?

PostFeed.class

public class PostFeed implements Parcelable{ 

private int pid; 
private int uid; 
private String link; 
private String title; 
private String description; 
private int up; 
private int comment_count; 
private String postPicUrl; 
private Date dop; 
private String user_name; 
private String user_pic; 
private String user_status; 
private DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); 
//getters and setters 
} 

SessionFeed.class

public class SessionFeed implements Parcelable{ 
private String session_title; 
private String session_image; 
private String session_description; 
private int session_id; 
private String s_venue; 
private String s_coordinator; 
private String s_c_email; 
private String s_c_phone; 
private String resource_person; 
private String rp_desg; 
private String time_and_date; 
private String address; 
private String room; 
private DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); 
private Date Dosp; 
String user_name; 
int uid; 
String user_status; 
String user_pic; 
// getters and setters 
} 

我试图创建一个搜索活动,其从MySqlite数据库搜索数据。在两个不同的数据库中,每个类型有两个单独的表,即PostFeedTableSessionFeedTable

在我的数据库操作类,这就是我要回:

public ArrayList<PostFeed> readPostForSearch(String searchText, DatabaseOperations dop){ 
    SQLiteDatabase sqLiteDatabase = dop.getReadableDatabase(); 
    ArrayList<PostFeed> newsFeedList = new ArrayList<>(); 
    String query ="select * from " + html_test_const.getTable_name() + " where " + html_test_const.getTitle() +" LIKE '%"+searchText+"%' OR "+ html_test_const.getDescription() + " LIKE '%"+searchText+"%'"+" order by date desc " +";"; 
    Cursor cursor = sqLiteDatabase.rawQuery(query,null); 
    if (cursor != null && cursor.moveToFirst()) { 
     L.m("loading entries " + cursor.getCount() + new Date(System.currentTimeMillis())); 
     do { 

      //create a new object and retrieve the data from the cursor to be stored in this object 
      PostFeed postFeed = new PostFeed(); 
      postFeed.setTitle(cursor.getString(cursor.getColumnIndex(html_test_const.getTitle()))); 
      postFeed.setLink(cursor.getString(cursor.getColumnIndex(html_test_const.getLink()))); 
      postFeed.setDescription(cursor.getString(cursor.getColumnIndex(html_test_const.getDescription()))); 
      long dateOfPost = cursor.getLong(cursor.getColumnIndex(html_test_const.getDate())); 
      postFeed.setDop(new java.sql.Date(dateOfPost)); 
      postFeed.setUser_name(cursor.getString(cursor.getColumnIndex(html_test_const.getUser_name()))); 
      postFeed.setPid(cursor.getInt(cursor.getColumnIndex(html_test_const.getSr_key()))); 
      postFeed.setUp(cursor.getInt(cursor.getColumnIndex(html_test_const.getUp_down()))); 
      postFeed.setComment_count(cursor.getInt(cursor.getColumnIndex(html_test_const.getComment_count()))); 
      postFeed.setUid(cursor.getInt(cursor.getColumnIndex(html_test_const.getUid()))); 
      postFeed.setPostPicUrl(cursor.getString(cursor.getColumnIndex(html_test_const.getPost_pic()))); 
      postFeed.setUser_pic(cursor.getString(cursor.getColumnIndex(html_test_const.getUser_pic()))); 
      postFeed.setUser_status(cursor.getString(cursor.getColumnIndex(html_test_const.getUser_status()))); 
      newsFeedList.add(postFeed); 

     } while (cursor.moveToNext()); 
    } 

    return newsFeedList; 
} 

这是相同的与各个变量的会话数据库操作。

SearchActivity包含一个回收站视图,其适配器采用ArrayList并设置该列表,该列表还包含两种类型的行元素。

问题:如何创建一个包含这两种类型的对象,并进一步如何使回收观点表明,这两种类型的ArrayList中的对象的ArrayList。

如果你需要更多的澄清让我知道。提前致谢。

+2

您可以创建一个包含对象a和b的对象c。然后创建一个c的数组列表。 – nikka

+0

听起来很简单,你可以请代码片段帮忙吗? @nikka –

+0

添加了一个答案,请评论,如果你能够使用相同或不是 – nikka

回答

4
public class Feeds implements Parcelable{ 

private PostFeed postFeed; 
private SessionFeed sessionFeed; 

Public Feeds(PostFeed postfeed, SessionFeed sessionfeed){ 
this.postFeed = postfeed 
this.sessionFeed = sessionfeed 
} 
} 

随后把数组列表会解决这个问题。

而且

for(int i=0: i<postfeedArraylist.size; i ++) 
    feedsArraylist.add(new Feeds(postfeedArraylist.get(i), null); 

重复相同的for循环sessionfeedArraylist为好。

+0

数据库操作怎么样?如何使用上述访问存储的数据。主要是:我从数据库访问我的数据。 –

+0

获取两个不同的后续传送和会话传送的数组列表,然后将它们简单地放到数据源列表列表中。因此,对于Feed的每个成员,postfeed将为空,sessionfeed将为null。 – nikka

+0

@AsifAli更新了我的答案,请检查。 – nikka

0

您已执行Parcelable interface,因此您可以创建此interface的列表,它可用于存储implemented class object

ArrayList<Parcelable> pList = new ArrayList<>(); 
+0

您可以请详细说明代码片段吗? –

+0

'pList.add((Parcelable)sessionFeed); pList.add((Parcelable)postFeed);' – user1506104

+0

我明白你刚刚展示的内容,但请仔细阅读这个问题,我该如何执行数据库操作并最终获取我发送到适配器的列表或数组列表。请尝试分解并详细说明。 –

1

由于两者之间似乎并不常见,尽管分享了相似的名称,但您仍可以创建一个新对象,该对象包含PostFeedSessionFeed

class FeedHolder implements Parcelable { 

    private final List<PostFeed> postFeeds; 
    private final List<SessionFeed> sessionFeeds; 

    FeedHolder(@NonNull List<PostFeed> postFeeds,@NonNull List<SessionFeed> sessionFeeds) { 
     this.postFeeds = postFeeds; 
     this.sessionFeeds = sessionFeeds; 
    } 

    List<SessionFeed> getSessionFeeds() { 
     return sessionFeeds; 
    } 

    List<PostFeed> getPostFeeds() { 
     return postFeeds; 
    } 

    //If you're using this data in an adapter, knowing the total 
    //size of both lists might be helpful. 
    int getTotalFeedCount() { 
     return postFeeds.size() + sessionFeeds.size(); 
    } 

} 

//... 

List<SessionFeed> sessionFeeds = //whatever you do to populate your 
//List of SessionFeeds... 
List<PostFeed> postFeeds = //Same again. 
FeedHolder feedHolder = FeedHolder(postFeeds, sessionFeeds); 
+0

数据库操作怎么样?如何使用上述访问存储的数据。主要是:我从数据库访问我的数据 –

+0

我已经对这个'FeedHolder'类进行了一些编辑,可能与您的情况更相关。由你决定。 – PPartisan

1

我想尼卡认为是正确的。完善就可以了,使用下面的类适配器

public class Feed implements Parcelable{ 

    private PostFeed postFeed; 
    private SessionFeed sessionFeed; 

    public Feed(PostFeed feed){ 
     this.postFeed = feed; 
    } 

    public Feed(SessionFeed feed){ 
     this.sessionFeed = feed; 
    } 

    //returns true for session feed type 
    public boolean isSessionFeed(){ 
     return sessionFeed!=null; 
    } 

    public SessionFeed getSessionFeed(){ 
     return sessionFeed; 
    } 

    public PostFeed getPostFeed(){ 
     return postFeed; 
    } 

} 

而在你的数据库的helper方法,回输的对象名单。

public List<Feed> readPostForSearch(String searchText, DatabaseOperations dop){ 
    SQLiteDatabase sqLiteDatabase = dop.getReadableDatabase(); 
    List<Feed> newsFeedList = new ArrayList<>(); 
    ... 
    if (cursor != null && cursor.moveToFirst()) { 
     L.m("loading entries " + cursor.getCount() + new Date(System.currentTimeMillis())); 
     do { 
      PostFeed postFeed = new PostFeed(); 

      ... 

      newsFeedList.add(new Feed(postFeed)); 

     } while (cursor.moveToNext()); 
    } 

    return newsFeedList; 
} 

为sessionFeeds重复相同操作,并将此列表从数据库添加到适配器列表中。设置视图时使用isSessionFeed()检查类型并相应地设置视图。希望能帮助到你。

+0

如果你真的想帮助我,让我们来做这个adpater?帮助我为多个视图制作适配器。我不能做getItemViewType()。 –

+0

我已经从ArrayList 的数据库中获得搜索结果,现在如何在适配器中设置东西 –

相关问题