Back to project page govchecker.
The source code is released under:
GNU General Public License
If you think the Android project govchecker 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.govchecker; /*from w ww .j a v a2s. c o m*/ import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.LinearLayout; public class VoteResultDisplay extends Activity{ public LinearLayout _vresults; public View v; private String url; public void onCreate(Bundle savedInstance){ super.onCreate(savedInstance); setContentView(R.layout.voteresultdisplay); } }