WEB开发网
开发学院手机开发Android 开发 Android控件(View)之TextView, Button, ImageButt... 阅读

Android控件(View)之TextView, Button, ImageButton, ImageView, CheckBox

 2010-09-27 02:07:00 来源:WEB开发网   
核心提示:android:layout_width="wrap_content"android:layout_height="wrap_content">< /ImageView>< /LinearLayout>_ImageView.java代码package
android:layout_width="wrap_content"

android:layout_height="wrap_content">< /ImageView>

< /LinearLayout>

_ImageView.java

代码

package com.webabcd.view;

import android.app.Activity;

import android.os.Bundle;

import android.widget.ImageView;

public class _ImageView extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

// TODO Auto-generated method stub

super.onCreate(savedInstanceState);

this.setContentView(R.layout.imageview);

setTitle("ImageView");

ImageView imgView = (ImageView) this.findViewById(R.id.imageView);

// 指定需要显示的图片

imgView.setBackgroundResource(R.drawable.icon01);

}

}

5、CheckBox 的 Demo

checkbox.xml

代码

< ?xml version="1.0" encoding="utf-8"?>

< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent">

< TextView android:layout_width="fill_parent"

android:layout_height="wrap_content" android:id="@+id/textView" />

< !--

CheckBox - 复选框控件

-->

< CheckBox android:text="CheckBox01" android:id="@+id/chk1"

android:layout_width="wrap_content" android:layout_height="wrap_content">< /CheckBox>

< CheckBox android:text="CheckBox02" android:id="@+id/chk2"

android:layout_width="wrap_content" android:layout_height="wrap_content">< /CheckBox>

< CheckBox android:text="CheckBox03" android:id="@+id/chk3"

android:layout_width="wrap_content" android:layout_height="wrap_content">< /CheckBox>

上一页  1 2 3 4 5 6 7 8  下一页

Tags:Android 控件 View

编辑录入:coldstar [复制链接] [打 印]
赞助商链接