AppInventor Basic Components

De MediaWiki do Campus São José
Revisão de 15h15min de 2 de maio de 2012 por Moecke (discussão | contribs) (Criou página com '==Button== Image:button.png Buttons are components that users touch to perform some action in your app. Buttons detect when users tap them. Many aspects of a button's appe...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar

Button

Button.png

Buttons are components that users touch to perform some action in your app.

Buttons detect when users tap them. Many aspects of a button's appearance can be changed. You can use the Enabled property to choose whether a button can be tapped.

Properties

BackgroundColor

Color for button background.

Enabled

If set, user can tap button to cause action.

FontBold

If set, button text is displayed in bold.

FontItalic

If set, button text is displayed in italics.

FontSize

Point size for button text.

FontTypeface

Font family for button text.

Height

Button height (y-size).

Width

Button width (x-size).

Image

Image to display on button.

Text

Text to display on button.

TextAlignment

Left, center, or right.

TextColor

Color for button text.

Events

Click()

User tapped and released the button.

GotFocus()

Button became the focused component.

LostFocus()

Button stopped being the focused component.

Canvas

Canvas.png

A two-dimensional touch-sensitive rectangular panel on which drawing can be done and sprites can be moved.

The BackgroundColor , PaintColor , BackgroundImage , Width , and Height of the Canvas can be set in either the Designer or in the Blocks Editor. The Width and Height are measured in pixels and must be positive.

Any location on the Canvas can be specified as a pair of (X, Y) values, where

  • X is the number of pixels away from the left edge of the Canvas
  • Y is the number of pixels away from the top edge of the Canvas

There are events to tell when and where a Canvas has been touched or a Sprite ( ImageSprite or Ball ) has been dragged. There are also methods for drawing points, lines, and circles.

Properties

BackgroundColor

The color of the canvas background.

BackgroundImage

The name of a file containing the background image for the canvas

Height LineWidth

The width of lines drawn on the canvas.

PaintColor

The color in which lines are drawn

Visible

Whether the component is visible

Width

Events

Dragged(number startX, number startY, number prevX, number prevY, number currentX, number currentY, boolean draggedSprite)

When the user does a drag from one point (prevX, prevY) to another (x, y). The pair (startX, startY) indicates where the user first touched the screen, and "draggedSprite" indicates whether a sprite is being dragged.

Touched(number x, number y, boolean touchedSprite)

When the user touches a canvas, providing the (x, y) position of the touch relative to the upper left corner of the canvas. The value "touchedSprite" is true if a sprite was also in this position.

Methods

Clear()

Clears the canvas, without removing the background image, if one was provided.

DrawCircle(number x, number y, number r)

Draws a circle (filled in) at the given coordinates on the canvas, with the given radius.

DrawLine(number x1, number y1, number x2, number y2)

Draws a line between the given coordinates on the canvas.

DrawPoint(number x, number y)

Draws a point at the given coordinates on the canvas.

Save()

Saves a picture of this Canvas to the device's external storage and returns the full path name of the saved file. If an error occurs the Screen's ErrorOccurred event will be called.

SaveAs(text filename)

Saves a picture of this Canvas to the device's external storage in the file named fileName. fileName must end with one of ".jpg", ".jpeg", or ".png" (which determines the file type: JPEG, or PNG). Returns the full path name of the saved file.

CheckBox

Checkbox.png

Check box components can detect user taps and can change their boolean state in response.

A check box component raises an event when the user taps it. There are many properties affecting its appearance that can be set in the Designer or Blocks Editor.

Properties

BackgroundColor

Color for check box background.

Checked

True if the box is checked, false otherwise.

Enabled

If set, user can tap check box to cause action.

Height

Check box height (y-size).

Width

Check box width (x-size).

Text

Text to display on check box.

TextColor

Color for check box text.

Visible

If set, check box is visible.

Events

Click()

User tapped and released check box.

GotFocus()

Check box became the focused component.

LostFocus()

Check box stopped being the focused component.

Clock

Clock.png

Use a clock component to create a timer that signals events at regular intervals. The clock component also does various conversions and manipulations with time units.

One use of the clock component is a a timer  : set the timer interval, and the timer will fire repeatedly at the interval, signalling a timer event.

A second use of the clock component is to manipulate time, and express time in various units. The internal time format used by the clock is called an instant . The clock's Now method returns the current time as an instant. The clock provides methods to manipulate instants, for example, return an instant that is several seconds, or months, or years from the given instant. It also provides methods to show the second, minute, hour, day, …, corresponding to a given instant.

Properties

TimerInterval

timer interval in milliseconds

TimerEnabled

If true, then the timer will fire

TimerAlwaysFires

if true, the timer will fire even if the application is not showing on the screen

Events

Timer()

This event is signaled when the timer fires

Methods

SystemTime()

The phone's internal time in milliseconds

Now()

The instant in time read from phone's clock

MakeInstant(Text from)

Make an instant specified by MM/DD/YYYY hh:mm:ss or MM/DD/YYYY or hh:mm.

MakeInstantFromMillis(Number millis)

Make an instant specified by time in milliseconds

GetMillis(instant)

The instant in time measured as milliseconds since 1970

AddSeconds(instant, Number seconds)

An instant in time some number of seconds after the given instant

AddMinutes(instant, Number minutes)

An instant in time some number of minutes after the given instant

AddHours(instant, Number hours)

An instant in time some number of hours after the given instant

AddDays(instant, Number days)

An instant in time some number of days after the given instant

AddWeeks(instant, Number weeks)

An instant in time some number of weeks after the given instant

AddMonths(instant, Number months)

An instant in time some number of months after the given instant

AddYears(instant, Number years)

An instant in time some number of years after the given instant

Duration(Calendar start, Calendar end)

Milliseconds between instants

Second(Calendar instant)

The second of the minute

Minute(Calendar instant)

The minute of the hour

Hour(Calendar instant)

The hour of the day

DayOfMonth(Calendar instant)

The day of the month,a number from 1 to 31

Weekday(Calendar instant)

The day of the week. a number from 1 (Sunday) to 7 (Saturday)

WeekdayName(Calendar instant)

The name of the day of the week

Month(Calendar instant)

The month of the year, a number from 1 to 12)

MonthName(Calendar instant)

The name of the month

Year(Calendar instant)

The year

FormatDateTime(Calendar instant)

Text describing the date and time of an instant

FormatDate(Calendar instant)

Text describing the date of an instant

FormatTime(Calendar instant)

Text describing time time of an instant

Image

Image.png

You use image components to represent images that users select and manipulate.

An image component displays an image. You can specify the picture to display and other aspects of the image's appearance in the Designer or in the Blocks Editor.

Properties

Picture

Picture displayed by this image.

Visible

If true, image is displayed.

Height

Image height (y-size).

Width

Image width (x-size).

Label

Label.png

Labels are components used to show text.

A label displays text which is specified by the Text property. Other properties, all of which can be set in the Designer or Blocks Editor, control the appearance and placement of the text.

Properties

BackgroundColor

Color for label background.

FontBold

If set, label text is displayed in bold.

FontItalic

If set, label text is displayed in italics.

FontSize

Point size for label text.

FontTypeface

Font family for label text.

Height

Label height (y-size).

Width

Label width (x-size).

Text

Text to display on label.

TextAlignment

Left, center, or right.

TextColor

Color for label text.

Visible

If set, label is visible.

ListPicker

Listpicker.png

Users tap a list picker component to select one item from a list of text strings.

When a user taps a list picker, it displays a list of text items for the user to choose from. The text items can be specified through the Designer or Blocks Editor by setting the  ElementsFromString  property to their comma-separated concatenation (for example,  choice 1, choice 2, choice 3  ) or by setting the  Elements  property to a  List  in the Blocks Editor.

Other properties, including TextAlignment and BackgroundColor , affect the appearance of the button and whether it can be tapped ( Enabled ).

Properties

Selection

Selected list element.

Items

Comma-separated list of items to display in component.

ElementsFromString

(Description to come.)

BackgroundColor

Color for list picker background.

FontBold

If set, list picker text is displayed in bold.

FontItalic

If set, list picker text is displayed in italics.

FontSize

Point size for list picker text.

FontTypeface

Font family for list picker text.

Height

List picker height (y-size).

Width

List picker width (x-size).

Text

Title text to display on list picker.

TextAlignment

Left, center, or right.

TextColor

Color for list picker text.

Visible

If set, list picker is visible.

Events

AfterPicking()

User selected an item from the list picker.

BeforePicking()

User has tapped the list picker but hasn't yet selected an item.

GotFocus()

List picker became the focused component.

LostFocus()

List picker is no longer the focused component.

Screen

The screen does not appear in the palette like other components, but if comes automatically with the project. Each project has exactly one screen, named Screen1. This name cannot be changed.

Properties

BackgroundColor

Color for screen background.

BackgroundImage

An image that forms the screen's background.

Height

Screen height (y-size).

icon

An image to be used as the icon for the installed application on the phone. This should be a PNG or a JPG image48x48 is a good size. Warning  : Specifying images other that PNG or JPG, for example .ico files, may prevent App Inventor from being able to package the application.

Scrollable

This is set by a checkbox in the designer. When checked, there will be a vertical scrollbar on the screen, and the height of the application can exceed the physical height of the device. When unchecked, the application height is constrained to the height of the device.

Title

Title for the screen (text). This will appear at the upper left of the phone when the application runs. A natural choice for the title is the title of the App, but you could make it something else, or even change it while the app is running.

Width

Screen width (x-size).

Events

Initialize()

Signaled when the application starts. It can be used setting initial values and performing other setup operations.

ErrorOccurred(component component, text functionName, number errorNumber, text message)

Signaled when an error occurs. The ErrorOccurred event is currently used for a small set of errors including:
  • Errors that occur in the LEGO MINDSTORMS Nxt* components
  • Errors that occur in the Bluetooth components
  • Errors that occur in the Twitter component
  • Errors that occur in the SoundRecorder component
  • ActivityStarter - when StartActivity is called, but there is no activity that corresponds to the activity properties.
  • LocationSensor - when LatitudeFromAddress or LongitudeFromAddress fails
  • Player - when setting the Source property fails
  • Sound - when setting the Source property fails or when the Play function fails
  • VideoPlayer - when setting the Source property fails For those errors, the system will show a notification by default, with an error number and a message. You can use this event handler to prescribe an error behavior different than the default, by testing errorNumber and taking the appropriate action.

PasswordTextBox

Passwordtextbox.png

Users enter passwords in a password text box component, which hides the text that has been typed in it.

A password text box is the same as the ordinary TextBox component, except that it does not display the characters typed by the user.

You can get or set the value of the text in the box with the Text property. If Text is blank, you can use the Hint property to provide the user with a suggestion of what to type. The Hint appears as faint text in the box.

Password text box components are usually used with a button component. The user taps the button after entering text.

Properties

BackgroundColor

Color for text box background.

Enabled

If set, user can enter a password in the box.

FontBold

If set, text is displayed in bold.

FontItalic

If set, text is displayed in italics.

FontSize

Point size for text.

FontTypeface

Font family for text.

Height

Box height (y-size).

Width

Box width (x-size).

TextAlignment

Left, center, or right.

TextColor

Color for text.

Hint

Password hint.

Events

GotFocus()

Box became the focused component.

LostFocus()

Box is no longer the focused component.

TextBox

Textbox.png

Users enter text in a text box component.

The initial or user-entered text value in a text box component is in the Text property. If Text is blank, you can use the Hint property to provide the user with a suggestion of what to type. The Hint appears as faint text in the box.

The MultiLine property determines if the text can have more than one line. For a single line text box, the keyboard will close automatically when the user presses the Done key. To close the keyboard for multiline text boxes, the app should use the HideKeyboard method or rely on the user to press the Back key.

The NumbersOnly property restricts the keyboard to accept numeric input only.

Other properties affect the appearance of the text box ( TextAlignment , BackgroundColor , etc.) and whether it can be used ( Enabled ).

Text boxes are usually used with the Button component, with the user clicking on the button when text entry is complete.

If the text entered by the user should not be displayed, use PasswordTextBox instead.

Properties

BackgroundColor

The background color of the input box. You can choose a color by name in the Designer or in the Blocks Editor. The default background color is 'default' (shaded 3-D look).

Enabled

Whether the user can enter text into this input box. By default, this is true.

FontBold (designer only)

Whether the font for the text should be bold. By default, it is not.

FontItalic (designer only)

Whether the text should appear in italics. By default, it does not.

FontSize (designer only)

The font size for the text. By default, it is 14.0 points.

FontTypeface (designer only)

The font for the text. The value can be changed in the Designer.

Height Hint

Text that should appear faintly in the input box to provide a hint as to what the user should enter. This can only be seen if the Text property is empty.

MultiLine

If true, then this text box accepts multiple lines of input, which are entered using the return key. For single line text boxes there is a Done key instead of a return key, and pressing Done hides the keyboard. The app should call the HideKeyboard method to hide the keyboard for a mutiline text box.

NumbersOnly

If true, then this text box accepts only numbers as keyboard input. Numbers can include a decimal point and an optional leading minus sign. This applies to keyboard input only. Even if NumbersOnly is true, you can use [set Text to] to enter any text at all.

Text

The text in the input box, which can be set by the programmer in the Designer or Blocks Editor, or it can be entered by the user (unless the Enabled property is false).

TextAlignment (designer only)

Whether the text should be left justified, centered, or right justified. By default, text is left justified.

TextColor

The color for the text. You can choose a color by name in the Designer or in the Blocks Editor. The default text color is black.

Visible

Whether the component is visible

Width

Events

GotFocus()

Event raised when this component is selected for input, such as by the user touching it.

LostFocus()

Event raised when this component is no longer selected for input, such as if the user touches a different text box.

Methods

HideKeyboard()

Hide the keyboard. Only multiline text boxes need this. Single line text boxes close the keyboard when the users presses the Done key.

TinyDB

Use a TinyDB component to store data that will be available each time the app runs.

TinyDB is a non-visible component.

Apps created with App Inventor are initialized each time they run. If an app sets the value of a variable and the user then quits the app, the value of that variable will not be remembered the next time the app is run. TinyDB is a persistent data store for the app, that is, the data stored there will be available each time the app is run. An example might be a game that saved the high score, and retrieved it each time the game is played.

Data items are stored under tags . To store a data item, you specify the tag it should be stored under. Subsequently, you can retrieve the data item that was stored under a given tag. If there is no value stored under a tag, then the value returned is the empty text. Consequently, to see if a tag has a value stored under it, test whether the return value is equal to the empty text (i.e., a text box with no text filled in).

There is only one data store per app. If you have multiple TinyDB components, they will use the same data store. To get the effect of separate stores, use different keys. Also each app has its own data store. You cannot use TinyDB to pass data between two different apps on the phone.

Properties

none

Events

none

Methods

StoreValue(text tag, valueToStore)

Store the value under the given tag. The tag must be a text stringthe value can be a string or a list.

GetValue(text tag)

Gets the value that was stored under the given tag. If no value was stored, returns the empty text.

To clear out the data base for an app, go on the phone under Settings → Applications → Manage Applications, the pick the app, and press "Clear Data".

The data in TinyDB is persistent only when you have packaged and downloading your app. If you are developing connected to the phone, and you restart the Appinventor application, or if you disconnect and reconnect the phone, then the data base will start fresh. This is a case where the application is not merely being stopped and restartedit is being removed from the phone and then reloaded.