Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

Android编码实现软件界面

$
0
0
package cn.itcast.code;

import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        LinearLayout linearLayout = new LinearLayout(this);
        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
        		ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT);
        TextView textView = new TextView(this);
        textView.setText(R.string.hello);
        textView.setId(34);
        LinearLayout.LayoutParams textParams = new LinearLayout.LayoutParams(
        		ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        linearLayout.addView(textView, textParams);
        
        setContentView(linearLayout, layoutParams);
       
    }
}

作者:jaycee110905 发表于2013-2-22 1:06:49 原文链接
阅读:136 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles