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

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

 2010-02-27 23:48:00 来源:WEB开发网   
核心提示:” txt.setText("我是 TextView显示文字用的"); }}2、Button 的 Demobutton.xml 代码 <?xml version="1.0" encoding="utf-8"?><LinearLayout

     txt.setText("我是 TextView 显示文字用的");
   }
}

2、Button 的 Demo
button.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" />
  
   <!--
     Button - 按钮控件
   -->  
   <Button android:id="@+id/button"
     android:layout_width="wrap_content" android:layout_height="wrap_content">
   </Button>
  
</LinearLayout>


_Button.java

代码
package com.webabcd.view;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class _Button extends Activity {

   @Override
   protected void onCreate(Bundle savedInstanceState) {
     // TODO Auto-generated method stub
     super.onCreate(savedInstanceState);
     this.setContentView(R.layout.button);

   setTitle("Button");
    
     Button btn = (Button) this.findViewById(R.id.button);
     btn.setText("click me");
    
     // setOnClickListener() - 响应按钮的鼠标单击事件
     btn.setOnClickListener(new Button.OnClickListener(){
       @Override
       public void onClick(View v) {
         TextView txt = (TextView) _Button.this.findViewById(R.id.textView);
         txt.setText("按钮被单击了");
       }
     });
   }
}

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

Tags:Android 控件 View

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