1 / 31

Programming with Android: Widgets and Events

Programming with Android: Widgets and Events. Luca Bedogni Marco Di Felice Dipartimento di Scienze dell ’ Informazione Università di Bologna. Outline. What is a Widget ?. Widget: TextView and EditText. Widget : Button and CompoundButton.

enell
Download Presentation

Programming with Android: Widgets and Events

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Programming with Android: Widgets and Events Luca Bedogni Marco Di Felice Dipartimento di Scienze dell’Informazione Università di Bologna

  2. Outline What is a Widget? Widget: TextView and EditText Widget: Button and CompoundButton Widget: ImageView Widget: CheckedTextView Event Management: Event Handlers Event Management: Event Listeners 2

  3. Android: Where are we now … Android Applications’ anatomy: • Activities Application Components (screens) • Intents  Communication between components • Layouts  Placement of the elements on the screen … • Views  … Elements to be placed! Widget  Pre-defined, common-used View objects …

  4. TextView EditText Button ToggleButton CheckBox Spinner DatePicker Custom Views Widgets: some examples …

  5. Widgets can be created in Java Widgets can be created in XML and accessed through Java Widgets: Java and XML code < TextView android:id="@+id/name1" android:layout_width="match_parent" android:layout_height="wrap_content” /> XML public TextView text; text=(TextView)findViewById(R.id.name1); JAVA (c) Luca Bedogni 2012

  6. Each Widget has a set of properties that can be defined by the user, defining the UI (e.g. size, colors, layout, etc). Widgets: Java and XML code < TextView android:layout_width="match_parent" android:layout_height="wrap_content” /> XML < TextView android:layout_width=”30px" android:layout_height=”30px” /> XML (c) Luca Bedogni 2012

  7. Each Widget can generate events, that can be captured by Listeners that defines the appropriate actions to be performed in response to that event. Widgets: Java and XML code ONCLICK event Fragment of code that manages the onClick event … (c) Luca Bedogni 2012

  8. Each Widget can have a focus and a visibility, based on the user’s interaction. The user can force a focus to a specific component through the requestFocus() method. The user can modify the visibility of a specific component through the setVisibility(int) method. Widgets: Java and XML code (c) Luca Bedogni 2012

  9. Widgets are organized on a hierarchy of classes … Widgets: Hierarchy of the classes … View TextView ImageView EditView Button CheckedTextView AutoCompleteTextView CompoundButton CheckBox RadioButton ToggleButton (c) Luca Bedogni 2012

  10. XML tags: <TextView></TextView> Could be filled with strings, HTML markups Should specify which type of text is displayed Not directly editable by users Usually used to display staticinformations Some methods: void setText(CharSequence text) CharSequencegetText(); Widgets: TextView

  11. Methods to place the text inside a TextView … public void setSingleLine(boolean singleLine) public void setHorizontallyScrolling(boolean wether) public void setLines(int lines) public void setEllipsize(TextUtils.TruncateAt where) public void setHints(CharSequence hint) TextUtils.TruncateAt.END TextUtils.TruncateAt.MARQUEE TextUtils.TruncateAt.MIDDLE TextUtils.TruncateAt.START Widgets: TextView methods (c) Luca Bedogni 2012

  12. Simple strings that could be linkified automatically. How? Pick a normal string, and use Linkify.addLinks() to declare what kind of link should be created. Could manage: Web addresses, Emails, phone numbers, Maps Widgets: Linkify elements TextView textView=(TextView) findViewById(R.id.output); Linkify.addLinks(textView, Linkify.WEB_URLS | Linkify.WEB_ADDRESSES | Linkify.PHONE_NUMBERS ); Linkify.addLinks(textView, Linkify.ALL); • It is possible to define custom Linkify objects. .. (c) Luca Bedogni 2012

  13. Similar to a TextView, but editable by the users Used to get information by the users. It is possible to declare in the layout file which type of text will be contained … (NORMAL, EDITABLE, SPANNABLE) An appropriate keyboard and display will be used. Text selection methods: public void setSelection(int index) public void setSelection(int start, int end) Widgets: EditText (c) Luca Bedogni 2012

  14. Defined through tag: <AutoCompleteTextView> Used to ease the input by the users … As soon as a user starts to type something, hints will be displayed A list of hints is given via an Adapter Widgets: AutocompleteTextView String[] tips=getResources().getStringArray(R.array.nani_array); ArrayAdapter<String> adapter=new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1lines, tips); AutoCompleteTextView acTextView=(AutoCompleteTextView) findViewById(R.id.inputText); acTextView.setAdapter(adapter); (c) Luca Bedogni 2012

  15. Widgets: AutocompleteTextView (c) Luca Bedogni 2012

  16. Not really different to manage than a Textview! Has events related to clicks, long clicks and so on Cannot be directly editable by users CompoundButton: Button + state (checked/unchecked) Subclasses:CheckBox, RadioButton, ToggleButton Methods: public void setChecked(boolean checked) public void toggle() Widgets: Button and CompoundButton (c) Luca Bedogni 2012

  17. Widgets: Button and CompoundButton checkBoxCompoundButton public booleanisChecked(): return true if the button is checked, false otherwise. public booleansetChecked(bool) Listener: onCheckedChangeListener (c) Luca Bedogni 2012

  18. Widgets: Button and CompoundButton radioButtonCompoundButton Define multiple (mutual-exclusive) options through a <RadioGroup> </RadioGroup> tag. Only one button can be checked within the same RadioGroup. Listener: OnCheckedChangeListener (c) Luca Bedogni 2012

  19. Widgets: Button and CompoundButton toggleButtonCompoundButton It can assume only 2 states: checked/unchecked Different labels for the states with: android:textOn and android:textOff XML attributes. Listener: OnCheckedChangeListener (c) Luca Bedogni 2012

  20. ImageView is a subclass of the View object. XML Tag: <ImageView> Images inside res/drawable (or obtained with other methods) Some methods to manipulate it: void setScaleType(enum scaleType) void setAlpha(double alpha) void setColorFilter(ColorFilter color) Widgets: ImageView (c) Luca Bedogni 2012

  21. Checkable version of a TextView Usable with a ListView Adapter Multipleor single selection of items(CHOICE_MODE_SINGLE, CHOICE_MODE_MULTIPLE) Methods: void setChoiceMode(intchoiceMode) long[] getCheckItemIds() intgetCheckedItemPosition() Widgets: CheckedTextView (c) Luca Bedogni 2012

  22. See the official documentation for the complete list: AnalogClock Widget DigitalClock Widget DataPicker Widget …. … … As an alternative, it is possible to create custom View … Ad hoc components, code reuse … Widgets: Other elements … (c) Luca Bedogni 2012

  23. The users interacts with the Views … … Upon certain action, an appropriate event will be fired Reacting to this events makes the activity interactive Events for click, long click, gestures, focus, external events … PROBLEM: How to handle these events? Views and Events (c) Luca Bedogni 2012

  24. Two ways to handle the View events: Events Handlers. Some Views have callback methods to handle specific events. when a Button is touched  onTouchEvent() called Es. boolean onKeyDown(int keycode, KeyEvent event) boolean onKeyUp(int keycode, KeyEvent event) boolean onKeyMultiple (int keycode, KeyEvent event) …. Views and Events (c) Luca Bedogni 2012

  25. Events Listeners. A View class contain a collection of nested interfaces (listeners). Each interface handles a single type of events… Each interface contains a single callback method … This method is called in occurrence of the event of the View. Views and Events (c) Luca Bedogni 2012

  26. Some ActionListeners: OnClickListener method: onClick() OnLongClickListener method: onLongClick() OnFocusChangeListener method: onFocusChange() OnKeyListener method: onKey() Views and Events: ActionListener (c) Luca Bedogni 2012

  27. More ActionListener: OnCheckedChangeListener method: onCheckedChanged() OnTouchListener method: onTouch() OnCreateContextMenuListener method: onCreateContextMenu() Views and Events: ActionListener

  28. Views and Events: ActionListener To handle events through ActionListener: Implement the callback method Implement the nested interface in the Activity Pass an instance of the ActionListener implementation to the View through the View.setOnXXXEventListener() method Button btn = (Button)findViewById(R.id.btn); btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { // Event management } }); public class ExampleActivity extends Activity implements OnClickListener{ … Button button=(Button)findViewById(R.id.buttonNext); button.setOnClickListener(this); … public void onClick(View v) { } }

  29. Views and Events: ActionListener To handle events through ActionListener: Implement the callback method Define an ActionListener object as an anonymous class Pass an instance of the ActionListener implementation to the View through the View.setOnXXXEventListener() method Button btn = (Button)findViewById(R.id.btn); btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { // Event management } }); Button btn = (Button)findViewById(R.id.btn); btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { // Event management } }); (c) Luca Bedogni 2012

  30. (c) Luca Bedogni 2012 Possible to perform some events in the code Tipically in the form performSomething() Used to simulate an event, and/or to debug the Listener of the event. The corresponding listener (if set) will be fired … Views and Events: ActionListener

  31. Events Handlers. Some views have callback methods to handle specific events. when a Button is touched  onTouchEvent() called Views and Events PROBLEM: to intercept an event, you must extend the View class and override the callback method … not very practical! • In practice: use Events Handlers for custom components … • … use Events Listeners for common View/Widget components … (c) Luca Bedogni 2012

More Related