Back to project page robobook.
The source code is released under:
MIT License
If you think the Android project robobook listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.krazyrobot.robobook.activity; //from w ww . j a v a2 s.co m import android.app.Activity; import android.os.Bundle; import android.widget.ListView; import com.krazyrobot.robobook.adapter.FollowAdapter; import com.krazyrobot.robobook.R; public class FollowRobotsActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.follow_robots); ListView listView = (ListView) findViewById(R.id.follow_list); FollowAdapter adapter = new FollowAdapter(this); listView.setAdapter(adapter); } }