博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
demo03linearlayoutdemo;
阅读量:6506 次
发布时间:2019-06-24

本文共 1453 字,大约阅读时间需要 4 分钟。

package com.example.demo03linearlayoutdemo;import android.os.Bundle;import android.app.Activity;import android.view.Menu;import android.view.ViewGroup;import android.widget.LinearLayout;import android.widget.TextView;public class MainActivity extends Activity {    //编程实现LinearLayout    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);//        LinearLayout linearLayout = new LinearLayout(this);//        //quick key alt+cmd+v//        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT);////////        layoutParams.setLayoutDirection(LinearLayout.VERTICAL);////        LinearLayout.LayoutParams txtParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);//        TextView textView = new TextView(this);//        textView.setLayoutParams(txtParams);//        textView.setText("wwww.baidu.com");//        textView.setTextSize(20);////        linearLayout.addView(textView,txtParams);//        super.addContentView(linearLayout,layoutParams);                            }    @Override    public boolean onCreateOptionsMenu(Menu menu) {        // Inflate the menu; this adds items to the action bar if it is present.        getMenuInflater().inflate(R.menu.main, menu);        return true;    }    }

 

转载地址:http://hwzfo.baihongyu.com/

你可能感兴趣的文章
VBS生成随机的16进制的密码
查看>>
eclipse内存设置参数
查看>>
JavaWeb xss攻击
查看>>
mount --bind使用方法
查看>>
python数据类型之集合
查看>>
【中文分词】简单高效的MMSeg
查看>>
js跨域
查看>>
页面输出缓存
查看>>
GTX 770 (GK 104)
查看>>
Eclipse中绑定java源代码
查看>>
Gena's Code
查看>>
正则式的使用
查看>>
7.Knockout.Js(Mapping插件)
查看>>
jqgride实现每一行的单选
查看>>
CGAL4.10 / CGAL4.13编译
查看>>
机器学习数学基础知识备忘
查看>>
HDFS开发中的一些问题(逐步补充)
查看>>
虚基类&虚继承
查看>>
SRM 670 div2 A B C div1 A(贪心,子问题合并)
查看>>
css 一些常用属性总结
查看>>