Blame view

footsafety/app/src/main/java/etelligens/com/foodsafety/placeholder/PlaceholderContent.java 1.99 KB
f7a13682   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  package etelligens.com.foodsafety.placeholder;
  
  import java.util.ArrayList;
  import java.util.HashMap;
  import java.util.List;
  import java.util.Map;
  
  /**
   * Helper class for providing sample content for user interfaces created by
   * Android template wizards.
   * <p>
   * TODO: Replace all uses of this class before publishing your app.
   */
  public class PlaceholderContent {
  
      /**
       * An array of sample (placeholder) items.
       */
      public static final List<PlaceholderItem> ITEMS = new ArrayList<PlaceholderItem>();
  
      /**
       * A map of sample (placeholder) items, by ID.
       */
      public static final Map<String, PlaceholderItem> ITEM_MAP = new HashMap<String, PlaceholderItem>();
  
      private static final int COUNT = 25;
  
      static {
          // Add some sample items.
          for (int i = 1; i <= COUNT; i++) {
              addItem(createPlaceholderItem(i));
          }
      }
  
      private static void addItem(PlaceholderItem item) {
          ITEMS.add(item);
          ITEM_MAP.put(item.id, item);
      }
  
      private static PlaceholderItem createPlaceholderItem(int position) {
          return new PlaceholderItem(String.valueOf(position), "Item " + position, makeDetails(position));
      }
  
      private static String makeDetails(int position) {
          StringBuilder builder = new StringBuilder();
          builder.append("Details about Item: ").append(position);
          for (int i = 0; i < position; i++) {
              builder.append("\nMore details information here.");
          }
          return builder.toString();
      }
  
      /**
       * A placeholder item representing a piece of content.
       */
      public static class PlaceholderItem {
          public final String id;
          public final String content;
          public final String details;
  
          public PlaceholderItem(String id, String content, String details) {
              this.id = id;
              this.content = content;
              this.details = details;
          }
  
          @Override
          public String toString() {
              return content;
          }
      }
  }