基本视图

作者:追风剑情 发布于:2015-8-23 16:52 分类:Android

基本视图:

  • TextView
  • EditText
  • Button
  • ImageButton
  • CheckBox
  • ToggleButton
  • RadioButton
  • RadioGroup

一、创建活动

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <Button
  9. android:id="@+id/btnSave"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:text="save" />
  13.  
  14. <Button
  15. android:id="@+id/btnOpen"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="Open" />
  19. <ImageButton
  20. android:id="@+id/btnImg1"
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:src="@drawable/ic_launcher" />
  24. <EditText
  25. android:id="@+id/txtName"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content" />
  28. <CheckBox
  29. android:id="@+id/chkAutosave"
  30. android:layout_width="fill_parent"
  31. android:layout_height="wrap_content"
  32. android:text="Autosave" />
  33. <CheckBox
  34. android:id="@+id/star"
  35. style="?android:attr/starStyle"
  36. android:layout_width="fill_parent"
  37. android:layout_height="wrap_content"
  38. android:text="Autosave" />
  39. <RadioGroup
  40. android:id="@+id/rdbGp1"
  41. android:layout_width="fill_parent"
  42. android:layout_height="wrap_content"
  43. android:orientation="vertical" >
  44. <RadioButton android:id="@+id/rdb1"
  45. android:layout_width="fill_parent"
  46. android:layout_height="wrap_content"
  47. android:text="Option 1"/>
  48. <RadioButton android:id="@+id/rdb2"
  49. android:layout_width="fill_parent"
  50. android:layout_height="wrap_content"
  51. android:text="Option 2"/>
  52. </RadioGroup>
  53. <ToggleButton android:id="@+id/toggle1"
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"/>
  56. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.Button;
  7. import android.widget.CheckBox;
  8. import android.widget.RadioButton;
  9. import android.widget.RadioGroup;
  10. import android.widget.RadioGroup.OnCheckedChangeListener;
  11. import android.widget.Toast;
  12. import android.widget.ToggleButton;
  13.  
  14. public class BasicViews1Activity extends Activity {
  15.  
  16. @Override
  17. protected void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.activity_basic_views1);
  20. Button btnOpen = (Button) findViewById(R.id.btnOpen);
  21. btnOpen.setOnClickListener(new View.OnClickListener() {
  22. @Override
  23. public void onClick(View v) {
  24. DisplayToast("You have clicked the Open button");
  25. }
  26. });
  27. Button btnSave = (Button) findViewById(R.id.btnSave);
  28. btnSave.setOnClickListener(new View.OnClickListener() {
  29. @Override
  30. public void onClick(View v) {
  31. DisplayToast("You have clicked the Save button");
  32. }
  33. });
  34. Button chkAutosave = (Button) findViewById(R.id.chkAutosave);
  35. chkAutosave.setOnClickListener(new View.OnClickListener() {
  36. @Override
  37. public void onClick(View v) {
  38. if(((CheckBox)v).isChecked())
  39. DisplayToast("CheckBox is checked");
  40. else
  41. DisplayToast("CheckBox is unchecked");
  42. }
  43. });
  44. RadioGroup radioGroup = (RadioGroup) findViewById(R.id.rdbGp1);
  45. radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
  46. @Override
  47. public void onCheckedChanged(RadioGroup group, int checkedId) {
  48. RadioButton rb1 = (RadioButton) findViewById(R.id.rdb1);
  49. if(rb1.isChecked())
  50. DisplayToast("Option 1 checked");
  51. else
  52. DisplayToast("Option 2 checked");
  53. }
  54. });
  55. ToggleButton toggleButton = (ToggleButton) findViewById(R.id.toggle1);
  56. toggleButton.setOnClickListener(new View.OnClickListener() {
  57. @Override
  58. public void onClick(View v) {
  59. if(((ToggleButton)v).isChecked())
  60. DisplayToast("Toggle button is On");
  61. else
  62. DisplayToast("Toggle button is Off");
  63. }
  64. });
  65. }
  66. private void DisplayToast(String msg)
  67. {
  68. Toast.makeText(getBaseContext(), msg, Toast.LENGTH_LONG).show();
  69. }
  70. }

运行效果

cccccccc.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号