package cn.wonders.codeui;import android.support.v7.app.ActionBarActivity;import android.view.ViewGroup.LayoutParams;import android.widget.LinearLayout;import android.widget.TextView;import android.os.Bundle;public class MainActivity extends ActionBarActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);//linearLayoutLinearLayout linearLayout = new LinearLayout(this);linearLayout.setOrientation(LinearLayout.VERTICAL);//textViewTextView textView = new TextView(this);textView.setText(R.string.hello_world);LayoutParams textViewParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);linearLayout.addView(textView, textViewParams);//paramsLayoutParams layoutParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);setContentView(linearLayout, layoutParams);}}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. android中从图库中选取图片
  2. 原始Android的目标机代码结构
  3. 马达 vibrator的android的timed_output实
  4. Android换肤白天/夜间模式的框架
  5. Android(安卓)jni系统变量、函数、接口定
  6. Android(安卓)应用的真正入口 - ZygoteIn
  7. Android使用ADB启动应用程序
  8. LinearLayout 内部控件居中
  9. 使用GDB调试Android(安卓)4.0中的WebKit
  10. 两分钟彻底让你明白Android(安卓)Activit