tokens (sequence) | ner_tags (sequence) |
---|---|
[
"I",
"am",
"using",
"custom",
"adapter",
"which",
"I",
"use",
"for",
"my",
"ListView",
"."
] | [
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O"
] |
[
"After",
"creating",
"ArrayList"
] | [
"O",
"O",
"B-Class"
] |
[
"I",
"have",
"the",
"following",
"code",
"in",
"my",
"app",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"However",
",",
"when",
"I",
"try",
"to",
"click",
"on",
"the",
"checkbox",
",",
"nothing",
"happens",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O"
] |
[
"So",
"I",
"have",
"to",
"manage",
"toggling",
"checkbox",
"state",
"manually",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O"
] |
[
"Then",
"it",
"works",
"."
] | [
"O",
"O",
"O",
"O"
] |
[
"(",
"before",
"that",
"I",
"have",
"to",
"remove",
"setChoiceMode",
"method",
"call",
")"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O"
] |
[
"So",
"what",
"could",
"be",
"the",
"problem",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Why",
"there",
"is",
"no",
"effect",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"my",
"R.layout.listview_item_text.xml"
] | [
"O",
"B-File_Name"
] |
[
"In",
"my",
"adapter",
"I",
"inflate",
"checkbox",
"layout",
"with",
"the",
"following",
"code",
":"
] | [
"O",
"O",
"B-Variable",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"listview_item_checkbox.xml"
] | [
"B-File_Name"
] |
[
"I",
"believe",
"that",
"you",
"have",
"to",
"use",
"a",
"widget",
"that",
"implements",
"Checkable",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"B-Class",
"O"
] |
[
"Try",
"with",
"android.R.layout.simple_list_item_multiple_choice",
"."
] | [
"O",
"O",
"B-Variable",
"O"
] |
[
"If",
"you",
"need",
"two",
"lines",
"then",
"implement",
"something",
"similar",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Instead",
"of",
"your",
"code",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"Try",
"something",
"like",
"this",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"If",
"you",
"can",
"-",
"improve",
"yur",
"code",
"(",
"create",
"CheckableFrameLayout",
"as",
"parent",
"layout",
"of",
"your",
"List",
"Item",
")",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"I-Class",
"O",
"O"
] |
[
"ListView",
"keep",
"BooleanSparseArray",
"of",
"checked",
"positions",
"(",
"you",
"can",
"get",
"it",
"with",
"method",
"getCheckedItemPositions())",
"."
] | [
"B-Class",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O"
] |
[
"In",
"code",
"(",
"grepcode",
")",
"it",
"set",
"View",
"checked",
"or",
"not",
"by",
"itself",
"only",
"if",
"View",
"is",
"implementing",
"Checkable",
"."
] | [
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"B-Class",
"O"
] |
[
"If",
"create",
"CheckableFrameLayout",
"and",
"sat",
"as",
"main",
"parent",
",",
"you",
"do",
"not",
"have",
"to",
"handle",
"these",
"cases",
"in",
"the",
"adapter",
"."
] | [
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O"
] |
[
"I",
"am",
"running",
"this",
"on",
"a",
"mac",
"and",
"it",
"compiles",
"in",
"the",
"terminal",
"but",
"after",
"i",
"type",
"in",
"java",
"Lab9",
"it",
"does",
"n't",
"do",
"anything",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Device",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Below",
"is",
"exactly",
"what",
"i",
"put",
"into",
"the",
"terminal"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application"
] |
[
"//compiles",
"but",
"does",
"not",
"run"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"The",
"program",
"is",
"waiting",
"for",
"your",
"input",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Add",
"a",
"prompt",
":"
] | [
"O",
"O",
"O",
"O"
] |
[
"i",
"'m",
"developing",
"a",
"android",
"application",
"which",
"will",
"detect",
"traffic",
"jams",
"and",
"map",
"on",
"openstreetmaps.in",
"navigating",
"between",
"my",
"current",
"location",
"and",
"the",
"destination",
"if",
"a",
"traffic",
"jam",
"is",
"detected",
"the",
"application",
"should",
"suggest",
"all",
"the",
"other",
"alternative",
"routes.how",
"can",
"i",
"get",
"these",
"alternative",
"routes",
"from",
"openstreetmaps",
"."
] | [
"O",
"O",
"O",
"O",
"B-Operating_System",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"A1",
"-",
"alternative",
"route",
"1",
","
] | [
"B-Variable",
"O",
"O",
"O",
"O",
"O"
] |
[
"A2",
"-",
"alternative",
"route",
"2"
] | [
"B-Variable",
"O",
"O",
"O",
"O"
] |
[
"Some",
"of",
"the",
"online",
"routers",
"for",
"OSM",
"have",
"an",
"avoid",
"areas",
"feature",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"GraphHopper",
"allows",
"you",
"to",
"make",
"the",
"routing",
"influenced",
"by",
"traffic",
"information",
"."
] | [
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'ve",
"blogged",
"recently",
"about",
"it",
"here",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Or",
"you",
"can",
"just",
"block",
"certain",
"streets",
"with",
"the",
"blocking",
"weighting",
"described",
"here",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"need",
"to",
"design",
"a",
"database",
"for",
"storing",
"skills",
"for",
"a",
"person",
",",
"a",
"person",
"can",
"have",
"none",
",",
"one",
"or",
"several",
"skills",
",",
"what",
"is",
"a",
"good",
"way",
"to",
"store",
"it",
"when",
"it",
"comes",
"to",
"easy",
"modification",
"of",
"skill",
"and",
"fast",
"search",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"have",
"been",
"thinking"
] | [
"O",
"O",
"O",
"O"
] |
[
"1",
".",
"use",
"a",
"bit",
"array",
",",
"each",
"bit",
"position",
"represents",
"a",
"skill",
","
] | [
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"2",
".",
"a",
"relation",
"table",
"that",
"each",
"row",
"link",
"a",
"person",
"to",
"a",
"SKILL"
] | [
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"3",
".",
"each",
"skill",
"as",
"a",
"field",
"in",
"the",
"table",
"of",
"the",
"person"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O"
] |
[
"Any",
"other",
"suggestion",
"or",
"what",
"should",
"I",
"aim",
"for",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"'s",
"a",
"clasic",
"many",
"to",
"many",
"relationship",
"so",
"I",
"would",
"suggest",
"a",
"persons",
"table",
",",
"skills",
"table",
"and",
"a",
"personToSkill",
"table",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"B-Data_Structure",
"O",
"B-Variable",
"B-Data_Structure",
"O",
"O",
"B-Variable",
"B-Data_Structure",
"O"
] |
[
"You",
"other",
"suggested",
"solutions",
"might",
"be",
"tempting",
"at",
"first",
",",
"but",
"they",
"are",
"both",
"a",
"maitnence",
"hell",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"First",
",",
"we",
"need",
"a",
"persons",
"table",
"(",
"all",
"code",
"examples",
"use",
"MySQL",
"syntax",
")",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O"
] |
[
"And",
"pretend",
"this",
"is",
"the",
"data",
"in",
"the",
"table",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O"
] |
[
"Then",
"we",
"need",
"a",
"skills",
"table",
"to",
"hold",
"all",
"known",
"skills",
":"
] | [
"O",
"O",
"O",
"O",
"B-Variable",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Finally",
"we",
"need",
"a",
"table",
"that",
"associates",
"a",
"person",
"with",
"a",
"skill",
":"
] | [
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"B-Variable",
"O"
] |
[
"The",
"primary",
"key",
"is",
"defined",
"so",
"that",
"no",
"person",
"can",
"be",
"associated",
"with",
"the",
"same",
"skill",
"more",
"than",
"once",
"and",
"both",
"columns",
"are",
"foreign",
"key",
"to",
"their",
"respective",
"tables",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O"
] |
[
"Assume",
"the",
"data",
"below",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"This",
"data",
"would",
"indicate",
"that",
"John",
"Doe",
",",
"Benny",
"Hill",
"and",
"Linus",
"Torvalds",
"all",
"have",
"the",
"skill",
"\"",
"Swimming",
"\"",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"O",
"B-Value",
"I-Value",
"O",
"B-Value",
"I-Value",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O"
] |
[
"Benny",
"Hill",
"and",
"Donald",
"Knuth",
"are",
"both",
"pilots",
"."
] | [
"B-Value",
"I-Value",
"O",
"B-Value",
"I-Value",
"O",
"O",
"B-Value",
"O"
] |
[
"Linus",
"Torvalds",
"created",
"a",
"kernel",
"."
] | [
"B-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"O"
] |
[
"And",
"Donald",
"Knuth",
"is",
"a",
"writer",
"."
] | [
"O",
"B-Value",
"I-Value",
"O",
"O",
"B-Value",
"O"
] |
[
"None",
"of",
"the",
"persons",
"are",
"an",
"Astronaut",
"..",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O"
] |
[
"I",
"am",
"using",
"an",
"alarm",
"manager",
"and",
"I",
"have",
"n't",
"been",
"able",
"to",
"maintain",
"the",
"alarms",
"when",
"the",
"system",
"reboots",
"so",
",",
"I",
"have",
"read",
"that",
"I",
"should",
"use",
"a",
"boot",
"receiver",
"which",
"extends",
"broadcastReceiver",
"but",
"I",
"want",
"to",
"know",
"the",
"exact",
"difference",
"between",
"the",
"receiver",
"itself",
"and",
"the",
"boot",
"receiver",
"."
] | [
"O",
"O",
"O",
"O",
"B-Class",
"I-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"I-Class",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"B-Class",
"I-Class",
"O"
] |
[
"The",
"onReceive",
"method",
"of",
"my",
"broadcastReceiver",
"actually",
"takes",
"me",
"to",
"a",
"new",
"activity",
"using",
"an",
"intent",
"should",
"i",
"use",
"this",
"code",
"and",
"paste",
"it",
"in",
"the",
"onReceive",
"of",
"the",
"bootReceiver",
"?"
] | [
"O",
"B-Function",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-Class",
"O"
] |
[
"or",
"what",
"exactly",
"should",
"I",
"write",
"in",
"the",
"bootReceiver",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O"
] |
[
"I",
"am",
"very",
"confused",
"about",
"this",
"point",
"because",
"I",
"have",
"multiple",
"alarms",
"and",
"I",
"have",
"given",
"each",
"one",
"a",
"unique",
"requestCode",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O"
] |
[
"There",
"is",
"no",
"separate",
"entity",
"\"",
"Boot",
"Receiver",
"\"",
"in",
"Android",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"I-Class",
"O",
"O",
"B-Operating_System",
"O"
] |
[
"Boot",
"receiver",
"is",
"just",
"broadcast",
"receiver",
"which",
"responds",
"to",
"intent",
"with",
"action",
"android.intent.action.BOOT_COMPLETED",
"."
] | [
"B-Class",
"I-Class",
"O",
"O",
"B-Class",
"I-Class",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"B-Variable",
"O"
] |
[
"I",
"believe",
"you",
"will",
"need",
"to",
"do",
"couple",
"of",
"things",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Create",
"a",
"class",
"which",
"will",
"inherit",
"from",
"BroadcastReceiver"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class"
] |
[
"Add",
"it",
"to",
"Manifest",
"and",
"add",
"info",
"that",
"it",
"should",
"handle",
"android.intent.action.BOOT_COMPLETED"
] | [
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable"
] |
[
"in",
"onReceive",
"code",
"read",
"all",
"your",
"alarms",
"from",
"persistent",
"storage",
"and",
"set",
"them",
"again",
"(",
"so",
",",
"they",
"will",
"be",
"set",
"again",
"after",
"each",
"reboot",
")",
"."
] | [
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"P.S",
".",
"I",
"recommend",
"to",
"read",
"through",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"http://developer.android.com/reference/android/content/BroadcastReceiver.html"
] | [
"O"
] |
[
"I",
"am",
"practicing",
"for",
"Java",
"fresher",
"interview",
"coding",
"examples",
"."
] | [
"O",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"am",
"trying",
"to",
"write",
"a",
"program",
"to",
"find",
"duplicate",
"numbers",
"between",
"1",
"to",
"N",
",",
"where",
"N",
"is",
"given",
"by",
"the",
"user",
"along",
"with",
"the",
"numbers",
"themselves",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"B-Variable",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"is",
"the",
"code",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"But",
"I",
"am",
"getting",
"following",
"error",
"in",
"Eclipse",
"Neon",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"B-Version",
"O"
] |
[
"What",
"is",
"wrong",
"?"
] | [
"O",
"O",
"O",
"O"
] |
[
"Why",
"the",
"JVM",
"heap",
"space",
"error",
"?"
] | [
"O",
"O",
"B-Application",
"B-Data_Structure",
"O",
"O",
"O"
] |
[
"Code",
"compiles",
"and",
"runs",
"fine",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"DataInputStream",
"is",
"for",
"binary",
"not",
"text",
"."
] | [
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"When",
"you",
"type",
"4",
"bytes",
",",
"this",
"is",
"turned",
"into",
"a",
"32-bit",
"int",
"value",
"e.g",
".",
"5",
",",
"\\n",
",",
"\\n",
",",
"\\n",
"is",
"about",
"900",
"million",
"which",
"is",
"why",
"it",
"complains",
"about",
"memory",
"when",
"you",
"create",
"the",
"array",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"B-Value",
"O",
"B-Value",
"O",
"B-Value",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O"
] |
[
"You",
"can",
"check",
"this",
"by",
"stepping",
"through",
"the",
"code",
"in",
"your",
"debugger",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"What",
"you",
"need",
"is",
"text",
"input",
",",
"try",
"using"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Try",
"using",
"a",
"Scanner",
"for",
"your",
"class",
"instead",
"."
] | [
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"'s",
"a",
"basic",
"example",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'m",
"scrapping",
"through",
"a",
"website",
"to",
"get",
"product",
"informations",
"to",
"be",
"used",
"on",
"my",
"web",
"app",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"An",
"example",
"of",
"a",
"product",
"attributes",
"are"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"My",
"plan",
"is",
"to",
"store",
"all",
"of",
"the",
"products",
"'",
"information",
"on",
"my",
"server",
"and",
"call",
"them",
"from",
"my",
"web",
"app",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Is",
"it",
"smart",
"move",
"to",
"store",
"img",
"files",
"to",
"my",
"server/link",
"them",
"on",
"mysql",
"DB",
"then",
"call",
"it",
"from",
"the",
"web",
"or",
"will",
"it",
"be",
"fast",
"enough",
"to",
"just",
"call",
"the",
"img",
"on",
"my",
"web",
"app",
"using",
"the",
"original",
"img",
"src",
"url",
"(",
"from",
"the",
"original",
"website",
")"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"depends",
"on",
"the",
"performance",
"of",
"your",
"setup",
"compared",
"to",
"theirs",
"for",
"any",
"given",
"user",
"depending",
"on",
"where",
"they",
"are",
"on",
"the",
"planet",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"think",
"it",
"'s",
"safe",
"to",
"assume",
"that",
"any",
"differences",
"would",
"be",
"marginal",
"assuming",
"you",
"are",
"serving",
"up",
"the",
"same-sized",
"image",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"However",
",",
"the",
"original",
"website",
"might",
"not",
"like",
"it",
"if",
"you",
"are",
"hot",
"linking",
"to",
"their",
"images",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"Also",
"if",
"they",
"change",
"their",
"filenames",
"or",
"images",
"your",
"links",
"will",
"break",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'ve",
"custom",
"list",
"view",
"layout",
"."
] | [
"O",
"O",
"O",
"B-HTML_XML_Tag",
"I-HTML_XML_Tag",
"O",
"O"
] |
[
"The",
"items",
"in",
"list",
"are",
"going",
"to",
"be",
"5",
"or",
"more",
"."
] | [
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"If",
"more",
"than",
"say",
",",
"5-10",
"items",
"are",
"there",
"in",
"list",
",",
"it",
"looks",
"good",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O"
] |
[
"But",
"if",
"there",
"are",
"say",
"only",
"5",
"items",
",",
"then",
"blank",
"space",
"appears",
"below",
"list",
"on",
"devices",
"larger",
"in",
"height",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"This",
"does",
"not",
"look",
"good",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"following",
"is",
"my",
"list",
"row",
"layout",
"-"
] | [
"O",
"O",
"O",
"B-Data_Structure",
"I-Data_Structure",
"O",
"O"
] |
[
"And",
"listview",
"-"
] | [
"O",
"B-HTML_XML_Tag",
"O"
] |
[
"What",
"I",
"desire",
"is",
",",
"if",
"height",
"of",
"device",
"is",
"larger",
"then",
"I",
"want",
"list",
"to",
"take",
"complete",
"height",
"by",
"scaling",
"height",
"of",
"each",
"row",
"in",
"way",
"that",
"it",
"should",
"display",
"all",
"items",
"w/o",
"scroll",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"If",
"items",
"are",
"more",
"then",
"scroll",
"should",
"appear",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"How",
"can",
"I",
"set",
"this",
"up",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Update"
] | [
"O"
] |
[
"I",
"can",
"opt-in",
"for",
"a",
"solution",
"where",
"I",
"'d",
"check",
"how",
"many",
"items",
"are",
"going",
"to",
"be",
"there",
"in",
"list",
"before",
"and",
"if",
"they",
"are",
"less",
"than",
"5-6",
",",
"I",
"'d",
"choose",
"a",
"different",
"layout",
"consisting",
"of",
"LinearLayout",
"or",
"something",
"that",
"would",
"fill",
"up",
"the",
"blank",
"space",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"But",
"I",
"ca",
"n't",
"figure",
"out",
"the",
"structure",
"I",
"need",
"to",
"choose",
"for",
"such",
"LinearLayout",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O"
] |
[
"Should",
"I",
"choose",
"5-6",
"LinearLayout",
"below",
"one",
"another",
"or",
"a",
"single",
"with",
"iteration",
"?"
] | [
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Well",
",",
"in",
"my",
"view",
"if",
"I",
"need",
"to",
"implement",
"such",
"a",
"function",
",",
"I",
"'ll",
"do",
"like",
"below",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
- Downloads last month
- 104