andriod CheckBox

来源:http://www.cnblogs.com/gisoracle/archive/2016/03/09/5257632.html
-Advertisement-
Play Games

<?xml version="1.0" encoding="UTF-8"?> <LinearLayout android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_par


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

    <LinearLayout android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">

    <TextView android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="多選控制項:" android:id="@+id/label"/>

    <CheckBox android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="AA" android:id="@+id/plain_cb"/>

    <CheckBox android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="BB" android:id="@+id/serif_cb"/>

    <CheckBox android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="CC" android:id="@+id/bold_cb"/>

    <CheckBox android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="DD" android:id="@+id/italic_cb"/>

    <Button android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="獲取checkbox" android:id="@+id/button1"/>

</LinearLayout>
package com.example.yanlei.mytk;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.TextView;
import android.widget.Toast;


public class MainActivity extends AppCompatActivity {


    private CheckBox plainCB;
    private CheckBox serifCB;
    private CheckBox boldCB;
    private CheckBox italicCB;
    private Button button1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        plainCB=(CheckBox)findViewById(R.id.plain_cb);
        serifCB=(CheckBox)findViewById(R.id.serif_cb);
        boldCB=(CheckBox)findViewById(R.id.bold_cb);
        italicCB=(CheckBox)findViewById(R.id.italic_cb);
        button1=(Button)findViewById(R.id.button1);

        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String result="";
                if(plainCB.isChecked()){
                    result+=plainCB.getText()+"、";
                }
                if(serifCB.isChecked()){
                    result+=serifCB.getText()+"、";
                }
                if(boldCB.isChecked()){
                    result+=boldCB.getText()+"、";
                }
                if(italicCB.isChecked()){
                    result+=italicCB.getText()+"、";
                }
                if(!"".equals(result)){
                    result=result.substring(0,result.length()-1);
                }else{
                    result="你沒有選擇!!!";
                }
                setTitle("Checked:"+result);
            }
        });

    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 最近愈發覺得基礎的重要性,細節決定成敗,所以希望能夠將自己註意到的搜集到的一些關於前端的小細節小知識整理出來,更好的方便自己記憶回顧。 1.在構建網頁Html框架時,儘量只給外層標記(即是父標記)定義類別class或id,內層標記(即是子標記)能通過嵌套表示的則利用嵌套的方式,而不需要再定義新的類別
  • JS題目: 在JavaScript中( )方法可以對數組元素進行排序。 A. add()B. join()C. sort()D. length() 答案:http://hovertree.com/tiku/bjaf/5v9ps30o.htm JS題目: 下列正則表達式中( )可以匹配首位是小寫字母,
  • 第6章 數據校驗 6.1 手機號碼驗證 function isMobile(value, colname) { var mobile = /^1[3458]\d{9}$/; alert(value.length); alert(value+'1'); alert(mobile.test(value)...
  • 背景 我們或多或少都使用過各式各樣的富文本編輯器,其中有一個很方便功能,複製一張圖片然後粘貼進文本框,這張圖片就被上傳了,那麼這個方便的功能是如何實現的呢? 原理分析 提取操作:複製= 粘貼= 上傳 在這個操作過程中,我們需要做的就是:監聽粘貼事件= 獲取剪貼板里的內容= 發請求上傳 為方便理解下文
  • android ImageSwitcher
  • 大家好,我胡漢三又回來了!我也不知道有多久沒更新我的博客了,可是我不會忘記你們的 ( 滑稽 ) 下麵是主題!! Bingo 閑著在校無聊,又崇拜Github上面的大神,於是就有了這個(偽)項目。先說明,此項目旨在學習,借鑒大神的思路,與思考問題的方式。 原項目地址為 "MummyDing/Leisu
  • <?xml version="1.0" encoding="UTF-8"?> <LinearLayout android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_par
  • <?xml version="1.0" encoding="UTF-8"?> <LinearLayout android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_par
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...