Android Open Source - walkitalkie List Activity






From Project

Back to project page walkitalkie.

License

The source code is released under:

Apache License

If you think the Android project walkitalkie listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/* Copyright 2011 Patrick Reynolds
 *//from   www  .j  a va  2 s  .  co m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * 
 */
package org.miloss;

import android.app.Activity;
import android.os.Bundle;

/**
 * 
 *
 */
public class ListActivity extends Activity {
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.userlist);
  }
}




Java Source Code List

org.miloss.Communicator.java
org.miloss.DatagramReaderThread.java
org.miloss.DatagramWriterThread.java
org.miloss.ListActivity.java
org.miloss.NetworkHub.java
org.miloss.SoundBiteListener.java
org.miloss.SoundBite.java
org.miloss.TalkActivity.java