Class Overview
StringArrayBlob
implements the class that manages the list of supported Walkie-Talkie applications to be used with the Push-to-Talk button.
The class is managed by the ConfigurationManager BlobProperty KEYBOARD_PTT_SUPPORTED_WT_APPLICATIONS
.
Summary
Public Methods |
ApplicationInfo
|
getAvailableWtApplication(Context context, int i)
Returns the ApplicationInfo of the installed application at the specified position in the SupportedWtApplications list.
|
[Expand]
Inherited Methods |
From class
com.datalogic.device.configuration.StringArrayBlob
void
|
add(String str)
Appends the specified String to the end of this list.
|
void
|
clear()
Clear all String elements in the list.
|
String
|
get(int i)
Returns the String at the specified position in this list.
|
Iterator<String>
|
iterator()
Returns an iterator over elements of String .
|
void
|
remove(int i)
Removes the String at the specified position in this list.
|
int
|
size()
Returns the number of String elements in this list.
|
|
From class
com.datalogic.device.configuration.SerializableBlob
SerializableBlob
|
clone()
Method to crete a clone of the instance of the base type of the BlobProperty
it is used by the get() method of BlobProperty to give not the reference to the same instance present in ConfigurationManager tree
otherwise the commit() does not work
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Iterable
abstract
void
|
forEach(Consumer<? super T> arg0)
|
abstract
Iterator<T>
|
iterator()
|
abstract
Spliterator<T>
|
spliterator()
|
|
Public Constructors
public
SupportedWtApplications
()
public
SupportedWtApplications
(List<String> strings)
SupportedWtApplications's constructor from a list of String
.
Parameters
strings
| : List of String .
|
Public Methods
public
ApplicationInfo
getAvailableWtApplication
(Context context, int i)
Returns the ApplicationInfo
of the installed application at the specified position in the SupportedWtApplications list.
Parameters
i
| : index of the application. |
Returns
ApplicationInfo
: Information of the installed application at the specified position in the SupportedWtApplications list.