Public Member Functions | Protected Member Functions | Package Attributes | Private Member Functions | Static Private Attributes
com.riverlab.robotmanager.robot.ViewRobotListActivity Class Reference
Inheritance diagram for com.riverlab.robotmanager.robot.ViewRobotListActivity:
Inheritance graph
[legend]

List of all members.

Public Member Functions

boolean onGenericMotionEvent (MotionEvent event)
void onItemClick (AdapterView<?> parent, View view, int position, long id)

Protected Member Functions

void onActivityResult (int requestCode, int resultCode, Intent data)
void onCreate (Bundle savedInstanceState)
void onResume ()

Package Attributes

RobotCardScrollAdapter adapter
Runnable close
RobotManagerApplication mApplication
CardScrollView mCardScrollView
GestureDetector mGestureDetector
BluetoothDevice mSelectedDevice
Runnable next
Runnable previous

Private Member Functions

GestureDetector createGestureDetector (Context context)
void displaySpeechRecognizer ()

Static Private Attributes

static final int SPEECH_REQUEST = 0

Detailed Description

Definition at line 43 of file ViewRobotListActivity.java.


Member Function Documentation

GestureDetector com.riverlab.robotmanager.robot.ViewRobotListActivity.createGestureDetector ( Context  context) [inline, private]

Definition at line 140 of file ViewRobotListActivity.java.

Definition at line 196 of file ViewRobotListActivity.java.

void com.riverlab.robotmanager.robot.ViewRobotListActivity.onActivityResult ( int  requestCode,
int  resultCode,
Intent  data 
) [inline, protected]

Definition at line 202 of file ViewRobotListActivity.java.

void com.riverlab.robotmanager.robot.ViewRobotListActivity.onCreate ( Bundle  savedInstanceState) [inline, protected]

Definition at line 91 of file ViewRobotListActivity.java.

Definition at line 189 of file ViewRobotListActivity.java.

void com.riverlab.robotmanager.robot.ViewRobotListActivity.onItemClick ( AdapterView<?>  parent,
View  view,
int  position,
long  id 
) [inline]

Definition at line 134 of file ViewRobotListActivity.java.

Definition at line 102 of file ViewRobotListActivity.java.


Member Data Documentation

Definition at line 49 of file ViewRobotListActivity.java.

Initial value:
 new Runnable() {
                @Override
                public void run() 
                {
                        finish();
                }
        }

Definition at line 53 of file ViewRobotListActivity.java.

Definition at line 51 of file ViewRobotListActivity.java.

Definition at line 47 of file ViewRobotListActivity.java.

Definition at line 50 of file ViewRobotListActivity.java.

Definition at line 48 of file ViewRobotListActivity.java.

Initial value:
 new Runnable() {
                @Override
                public void run() 
                {
                        int last = mCardScrollView.getChildCount();
                        int current = mCardScrollView.getSelectedItemPosition();
                        int next = current + 1;

                        if(next < last)
                        {
                                mCardScrollView.setSelection(next);
                        }
                }
        }

Definition at line 75 of file ViewRobotListActivity.java.

Initial value:
 new Runnable() {
                @Override
                public void run() 
                {
                        int current = mCardScrollView.getSelectedItemPosition();
                        int next = current - 1;

                        if(next >= 0)
                        {
                                mCardScrollView.setSelection(next);
                        }
                }
        }

Definition at line 61 of file ViewRobotListActivity.java.

Definition at line 45 of file ViewRobotListActivity.java.


The documentation for this class was generated from the following file:


google_glass_driver
Author(s): Nicholas Otero
autogenerated on Fri Aug 28 2015 10:51:45