[android] 手機衛士自定義控制項的屬性

来源:http://www.cnblogs.com/taoshihan/archive/2016/04/07/5366045.html
-Advertisement-
Play Games

上一節完成的自定義組合控制項,靈活性不夠,控制項的顯示信息上,仿照系統屬性,自定義自己的屬性 上一節組合控制項SettingItemView中有三個控制項,分別是TextView大標題,TextView描述,CheckBox覆選框 自定義屬性 tsh:title=”大標題” 和tsh:desc_on=”小標 ...


上一節完成的自定義組合控制項,靈活性不夠,控制項的顯示信息上,仿照系統屬性,自定義自己的屬性

上一節組合控制項SettingItemView中有三個控制項,分別是TextView大標題,TextView描述,CheckBox覆選框

自定義屬性 tsh:title=”大標題” 和tsh:desc_on=”小標題開啟”,tsh:desc_off=”小標題關閉”

添加命名空間,xmlns:tsh=”http://schemas.android.com/apk/res/包名"

res/values/目錄下創建 attrs.xml文件

添加節點 <declare-styleable name=”TextView”>

節點下添加節點<attr name=”title” format=”string”/>,添加其他兩個屬性的節點

 

在佈局文件使用的時候,會調用帶有兩個參數的構造方法

在這個構造方法裡面,會傳遞一個AttributeSet對象

調用AttributeSet對象的getAttributeValue()方法,得到屬性值,參數:索引位置,不推薦

調用AttributeSet對象的getAttributeValue(namespace,name)方法,參數:命名空間,屬性名

調用TextView對象的setText()方法,直接給設置進去

描述部分,在setChecked()方法裡面,判斷,再設置

SettingItemView.java

package com.qingguow.mobilesafe.ui;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.CheckBox;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.qingguow.mobilesafe.R;

public class SettingItemView extends RelativeLayout {
    private TextView tv_title;
    private TextView tv_desc;
    private CheckBox cb_status;
    private String desc_on;
    private String desc_off;
    /**
     * 初始化View對象
     * @param context
     */
    private void initView(Context context) {
        View.inflate(context, R.layout.setting_item_view, this);
        cb_status=(CheckBox) this.findViewById(R.id.cb_status);
        tv_desc=(TextView) this.findViewById(R.id.tv_desc);
        tv_title=(TextView) this.findViewById(R.id.tv_title);
        
    }
    /**
     * 判斷是否選中
     * @return
     */
    public boolean isChecked(){
        return cb_status.isChecked();
    }
    /**
     * 設置是否選中
     * @param status
     */
    public void setChecked(boolean status){
        if(status){
            tv_desc.setText(desc_on);
        }else{
            tv_desc.setText(desc_off);
        }
        cb_status.setChecked(status);
    }
    /**
     * 設置顯示文本
     * @param text
     */
    public void setDesc(String text){
        tv_desc.setText(text);
    }
    public SettingItemView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        initView(context);
    }

    public SettingItemView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView(context);
     //獲取傳遞的屬性 String title
=attrs.getAttributeValue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "title"); tv_title.setText(title); desc_on=attrs.getAttributeValue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "desc_on"); desc_off=attrs.getAttributeValue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "desc_off"); } public SettingItemView(Context context) { super(context); initView(context); } }

 

activity_setting.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tsh="http://schemas.android.com/apk/res/com.qingguow.mobilesafe"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="#ccc"
        android:gravity="center"
        android:text="設置中心"
        android:textSize="20sp" />

    <com.qingguow.mobilesafe.ui.SettingItemView
        tsh:title="設置自動更新"
        tsh:desc_on="設置自動更新開啟"
        tsh:desc_off="設置自動更新關閉"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/siv_item">
    </com.qingguow.mobilesafe.ui.SettingItemView>

</LinearLayout>

attrs.xml

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

    <declare-styleable name="TextView">
        <attr name="title" format="string" />
        <attr name="desc_on" format="string" />
        <attr name="desc_off" format="string" />
    </declare-styleable>

</resources>

 


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

-Advertisement-
Play Games
更多相關文章
  • 用GCD實現單例模式的步驟: 步驟1. 創建頭文件 XZSingleton.h,裡面代碼如下: 步驟2. 要實現的單例類,比如 XZDataTool,XZDataTool.h XZDataTool.m代碼分別 如下: ...
  • 一,效果圖。 二,工程圖。 三,代碼。 RootViewController.h RootViewController.m ...
  • 在iOS應用開發中,有三類視圖對象會打開虛擬鍵盤,進行輸入操作,但如何關閉虛擬鍵盤,卻沒有提供自動化的方法。這個需要我們自己去實現。這三類視圖對象分別是UITextField,UITextView和UISearchBar。 這裡介紹一下UITextField中關閉虛擬鍵盤的幾種方法。 (miki西游 ...
  • ​【聲明】 歡迎轉載,但請保留文章原始出處→_→ 生命壹號:http://www.cnblogs.com/smyhvae/ 文章來源:http://www.cnblogs.com/smyhvae/p/3981720.html 聯繫方式:[email protected] 【正文】 一、初識Git: Gi ...
  • 鍵盤的出現於隱藏(解決鍵盤彈出時會覆蓋文本框的問題,代碼實現) #import "ViewController.h" #import "UIView+FrameExtension.h" // 可以自己寫,以後用著方便 #define kDeviceHeight [UIScreen mainScree ...
  • 學習一門新語言最經典的例子就是輸出“Hello World!” 如果你使用過其他語言,那麼看上去是非常的熟悉吧。但比一些c要簡單的多吧 1、不需要導入一些單獨的庫,比如輸入/輸出或字元串處理功能的類庫, 2、不需要在全局範圍內編寫的代碼用於作為入口點程式,所以你不需要 main()函數, 3、不需要 ...
  • 前言:繼上次《IOS開發--微信支付》以來,一直沒有太多時間,更新總結詳細支付這樣的長篇大論,很抱歉。今天,推出支付寶支付的詳細流程。 1、開始下載和查看支付寶支付的Demo。 我們直接進入支付寶的支付平臺參考來進行集成支付寶支付: https://doc.open.alipay.com/doc2/ ...
  • [[XZMusicTool alloc] init]; [XZMusicTool sharedMusicTool]; [tool4 copy]; 以上三種方式都能保證創建出來的對象是同一個. ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...