Searched defs:SpeechView (Results 1 - 2 of 2) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DList4.java87 * Make a SpeechView to hold each row.
93 SpeechView sv;
95 sv = new SpeechView(mContext, Shakespeare.TITLES[position],
98 sv = (SpeechView) convertView;
113 * We will use a SpeechView to display each speech. It's just a LinearLayout
117 private class SpeechView extends LinearLayout { class in class:List4
118 public SpeechView(Context context, String title, String words) { method in class:List4.SpeechView
138 * Convenience method to set the title of a SpeechView
145 * Convenience method to set the dialogue of a SpeechView
H A DList6.java98 * Make a SpeechView to hold each row.
102 SpeechView sv;
104 sv = new SpeechView(mContext, mTitles[position], mDialogue[position], mExpanded[position]);
106 sv = (SpeechView)convertView;
362 * We will use a SpeechView to display each speech. It's just a LinearLayout
366 private class SpeechView extends LinearLayout { class in class:List6
367 public SpeechView(Context context, String title, String dialogue, boolean expanded) { method in class:List6.SpeechView
387 * Convenience method to set the title of a SpeechView
394 * Convenience method to set the dialogue of a SpeechView

Completed in 49 milliseconds