Android Open Source - BusyCoderNote Linear Layout Activity






From Project

Back to project page BusyCoderNote.

License

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.

Java Source Code

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);
    }
}




Java Source Code List

com.github.yftx.BusyCoderNote.Sample.MainActivity.java
com.github.yftx.BusyCoderNote.Sample.container.LinearLayoutActivity.java