• Android Video Tutorials

Android - ToggleButton 控件



ToggleButton 以按钮的形式显示选中/未选中状态。它基本上是一个带指示灯的开/关按钮。

Toggle

切换按钮

ToggleButton 属性

以下是与 ToggleButton 控件相关的重要的属性。您可以查看 Android 官方文档以获取属性的完整列表以及相关方法,您可以使用这些方法在运行时更改这些属性。

序号 属性 & 描述
1

android:disabledAlpha

这是禁用时应用于指示器的 Alpha 值。

2

android:textOff

这是按钮未选中时的文本。

3

android:textOn

这是按钮选中时的文本。

继承自 android.widget.TextView 类 -

序号 属性 & 描述
1

android:autoText

如果设置,则指定此 TextView 具有文本输入方法并自动更正一些常见的拼写错误。

2

android:drawableBottom

这是要在文本下方绘制的可绘制对象。

3

android:drawableRight

这是要在文本右侧绘制的可绘制对象。

4

android:editable

如果设置,则指定此 TextView 具有输入方法。

5

android:text

这是要显示的文本。

继承自 android.view.View 类 -

序号 属性 & 描述
1

android:background

这是用作背景的可绘制对象。

2

android:contentDescription

这定义了简要描述视图内容的文本。

3

android:id

这为该视图提供一个标识符名称,

4

android:onClick

这是此视图上下文中的方法名称,当单击视图时调用该方法。

5

android:visibility

这控制视图的初始可见性。

示例

此示例将引导您完成简单的步骤,以演示如何使用线性布局和 ToggleButton 创建自己的 Android 应用程序。

步骤 描述
1 您将使用 Android Studio IDE 创建一个 Android 应用程序,并将其命名为 My Application,放在包 com.example.saira_000.myapplication 下,如Hello World 示例章节中所述。
2 修改 src/MainActivity.java 文件以添加单击事件。
2 修改 res/layout/activity_main.xml 文件的默认内容以包含 Android UI 控件。
3 无需声明默认常量。Android Studio 会在 string.xml 中处理默认常量。
4 运行应用程序以启动 Android 模拟器并验证对应用程序所做的更改的结果。

以下是修改后的主活动文件 src/MainActivity.java 的内容。此文件可以包含每个基本生命周期方法。

在下面的示例中,abc 指示 tutorialspoint 的图像
package com.example.saira_000.myapplication;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import android.widget.ToggleButton;

public class MainActivity extends ActionBarActivity {
   ToggleButton tg1,tg2;
   Button b1;
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      
      tg1=(ToggleButton)findViewById(R.id.toggleButton);
      tg2=(ToggleButton)findViewById(R.id.toggleButton2);
      
      b1=(Button)findViewById(R.id.button2);
      b1.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            StringBuffer result = new StringBuffer();
            result.append("You have clicked first ON Button-:) ").append(tg1.getText());
            result.append("You have clicked Second ON Button -:) ").append(tg2.getText());
            Toast.makeText(MainActivity.this, result.toString(),Toast.LENGTH_SHORT).show();
         }
      });
   }
}

以下是 res/layout/activity_main.xml 文件的内容 -

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:paddingBottom="@dimen/activity_vertical_margin"
   android:paddingLeft="@dimen/activity_horizontal_margin"
   android:paddingRight="@dimen/activity_horizontal_margin"
   android:paddingTop="@dimen/activity_vertical_margin"
   tools:context=".MainActivity">
   
   <TextView
      android:id="@+id/textView2"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Tutorials point"
      android:textColor="#ff87ff09"
      android:textSize="30dp"
      android:layout_above="@+id/imageButton"
      android:layout_centerHorizontal="true"
      android:layout_marginBottom="40dp" />
      
   <ImageButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/imageButton"
      android:src="@drawable/abc"
      android:layout_centerVertical="true"
      android:layout_centerHorizontal="true" />
      
   <ToggleButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="On"
      android:id="@+id/toggleButton"
      android:checked="true"
      android:layout_below="@+id/imageButton"
      android:layout_toEndOf="@+id/button2/>
      
   <ToggleButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Off"
      android:id="@+id/toggleButton2"
      android:checked="true"
      android:layout_alignTop="@+id/toggleButton" />
      
   <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/button2"
      android:text="ClickMe"
      android:layout_alignParentBottom="true"
      android:layout_centerHorizontal="true" />
      
</RelativeLayout>

以下是 res/values/strings.xml 文件的内容,用于定义这些新的常量 -

<?xml version="1.0" encoding="utf-8"?>
<resources>
   <string name="app_name">My Application</string>
</resources>

以下是 AndroidManifest.xml 的默认内容 -

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.saira_000.myapplication" >
   
   <application
      android:allowBackup="true"
      android:icon="@drawable/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme" >
      
      <activity
         android:name="com.example.My Application.MainActivity"
         android:label="@string/app_name" >
      
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      
      </activity>
      
   </application>
</manifest>

让我们尝试运行您的 My Application 应用程序。我假设您在进行环境设置时创建了您的 AVD。要从 Android Studio 运行应用程序,请打开项目中的一个活动文件,然后单击工具栏中的运行 Eclipse Run Icon 图标。Android Studio 将应用程序安装到您的 AVD 上并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口 -

将显示以下屏幕 -

Android ToggleButton Control

如果您先单击了按钮,您将在 Toast 上收到一条消息 您单击了第一个 ON 按钮 -:),否则,如果您单击了第二个按钮,您将在 Toast 上收到一条消息 您单击了第二个 ON 按钮 -:)

练习

我建议您尝试使用布局 XML 文件以及编程时 ToggleButton 的不同属性来尝试上述示例,以获得 ToggleButton 不同的外观和感觉。尝试使其可编辑,更改字体颜色、字体系列、宽度、textSize 等,并查看结果。您还可以尝试在单个活动中使用多个 ToggleButton 控件的上述示例。

android_user_interface_controls.htm
广告

© . All rights reserved.