Back to project page BusyCoderNote.
The source code is released under:
GNU General Public License
If you think the Android project BusyCoderNote 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.github.yftx.BusyCoderNote.Sample.container; // ww w. ja v a 2s. c om import android.app.Activity; import android.os.Bundle;import com.github.yftx.BusyCoderNote.Sample.R; /** * Created by yftx * on 1/3/14. */ public class LinearLayoutActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.linear_layout_activity); } }