android项目自定义组合控件添加属性

首先要在values文件下新建立一个文件arrts.xml,这个文件就是用来说明键名称是做什么的,和值的类型

<?xml version="1.0" encoding="utf-8"?>
<resources>
     <declare-styleable name="SeetingView">
        <attr name="up" format="string" />
        <attr name="down_on" format="string" />
        <attr name="down_off" format="string" />
    </declare-styleable>
</resources>

然后在应用的布局里需要加上命名空间,第二行就是自己的命名空间,这个组成就是前面的xmlns:itheima名字然后是"http://schemas.android.com/apk/res/+包名

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:itheima="http://schemas.android.com/apk/res/com.itheima.superman"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/home_bg">

    <TextView
        style="@style/TitleStyle"
        android:text="设置中心"
        />
    <com.itheima.view.SeetingView
        android:id="@+id/stv_updata"
        android:layout_marginTop="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        itheima:up="自动更新设置"
        itheima:down_on="自动更新已经开启"
         itheima:down_off="自动更新已经关闭"
        />

</LinearLayout>

最后我们就要在自定义控件的类里获取这些值了然后给他们设置上。

package com.itheima.view;

import com.itheima.superman.R;

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

public class SeetingView extends RelativeLayout{

    private TextView tv_up;
    private TextView tv_down;
    private CheckBox ck_right;
    private String up;
    private String down_on;
    private String down_off;
    //命名空间
    private String nameSpace = "http://schemas.android.com/apk/res/com.itheima.superman";
    //自定义样式调用
    public SeetingView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        initView();
    }
    //自定义属性调用
    public SeetingView(Context context, AttributeSet attrs) {
        super(context, attrs);
        //获取命名空间下,键名称为“up”的值
        up = attrs.getAttributeValue(nameSpace, "up");
        down_on = attrs.getAttributeValue(nameSpace, "down_on");
        down_off = attrs.getAttributeValue(nameSpace, "down_off");
        initView();
    }
    //声明调用
    public SeetingView(Context context) {
        super(context);
        initView();
    }
    //初始化布局
    private void initView(){
        //给这个布局一个父控件
        View.inflate(getContext(),R.layout.item_seeting, this);
        tv_up = (TextView) findViewById(R.id.tv_up);
        tv_down = (TextView) findViewById(R.id.tv_down);
        ck_right = (CheckBox) findViewById(R.id.ck_right);
        //在初始化的时候设置这个值
        tv_up.setText(up);
    }
    //设置顶部文字
    public void setUp(String text){
        tv_up.setText(text);
    }
    //设置底部文字
    public void setDown(String text){
        tv_down.setText(text);
    }
    //是否被选中
    public boolean isChecked(){
        return ck_right.isChecked();
    }
    //设置选择状态
    public void setChecked(boolean b){
        if(b){
            ck_right.setChecked(b);
            tv_down.setText(down_on);
        }else{
            ck_right.setChecked(b);
            tv_down.setText(down_off);
        }
    }

}
时间: 2024-12-26 06:43:35

android项目自定义组合控件添加属性的相关文章

android项目自定义组合控件

自定义控件首先要有一个布局文件 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="60dp" a

Android自定义控件——自定义组合控件

转载请注明出处http://blog.csdn.net/allen315410/article/details/39581055  前面几篇博文介绍了Android如何自定义控件,其实就是讲一下如何"从无到有"的自定义一个全新的控件,继承View或者继承ViewGroup,复写其相关方法,这种自定义控件的方式相对来说难度较大,而且并不是所有需要新控件的情况下,都要这样进行.有很多情况下,我们只要运用好Android给我提供好的控件,经过布局巧妙的结合在一起,就是一个新的控件,我称之为&

android:自定义组合控件Weight(高仿猫眼底部菜单栏)

在我们实际开发当中,会碰见一些布局结构类似或者相同的界面,例如应用的设置界面.tab按钮界面等.这时候,对于初学者来说,xml里面一个个绘制出来或许是最初的想法:可能随着经验的积累,又学会一招,就是使用include标签,导入类似或者相同的布局,提高了性能又减少了代码:再以后呢,自定义控件又可以实现这一目的.本文就是简单的使用自定义的组合控件模仿猫眼底部菜单栏. 1.自定义组合控件属性:在res/values目录下创建attrs.xml文件 <declare-styleable name="

【android】自定义组合控件PullToRefreshRecyeclerView

场景:自从Android 5.0发布以来,越来越多的开发者开始接触RecyeclerView,但是RecyclerView如何实现下拉刷新,上拉加在更多.于是我就偷懒 写了一个,以供大家参考和学习,以待大家改进. 构思:想必大家对SwipeRefreshLayout这个控件有一定了解,没错本次自定义组合控件也就是SwipeRefreshLayout与RecyeclerView的组合. 那么我们一步一步来实现: 1.首先写一个组合布局如下:pulltorefreshrecyclerview.xml

Android中自定义组合控件

Android中自定义控件的情况非常多,一般自定义控件可以分为两种:继承控件及组合控件.前者是通过继承View或其子类,重写方法实现自定义的显示及事件处理方式:后者是通过组合已有的控件,来实现结构的简化和代码的重用. 本篇文章主要介绍自定义组合控件,继承控件后续有机会再述. 自定义组合控件一般来说都是以ViewGroup及其子类(LinearLayout.RelativeLayout.FrameLayout等)为主,内部嵌套其他控件,来组合成一个新的控件,实现一些特定的需要,可以是代码简化,结构

Android实例-手机安全卫士(九)-自定义组合控件的属性

一.目标. 在布局文件中使用自定义控件时,直接在属性中设置值,类似于在TextView控件中设置text属性来显示文本. 效果如图:      属性设置: 二.代码实现. 1.自定义命名空间,类似于TextView控件里面android:text属性前的android.在需要放置自定义控件的布局文件的布局方式(LinearLayout.RelativeLayout等均可)属性里,参照android的命名空间样式增加自定义的命名空间,其名称可以随便取(本例中取名custom),代码是:xmlns:

Android自定义组合控件--图片加文字,类似视频播放软件的列表

分四步来写: 1,组合控件的xml; 2,自定义组合控件的属性; 3,自定义继承组合布局的class类,实现带两参数的构造器; 4,在xml中展示组合控件. 具体实现过程: 一.组合控件的xml 我接触的有两种方式,一种是普通的Activity的xml:一种是父节点为merge的xml.我项目中用的是第一种,但个人感觉第二种好,因为第一种多了相对或者绝对布局层. 我写的 custom_pictext.xml <?xml version="1.0" encoding="u

android 自定义组合控件

自定义控件是一些android程序员感觉很难攻破的难点,起码对我来说是这样的,但是我们可以在网上找一些好的博客关于自定义控件好好拿过来学习研究下,多练,多写点也能找到感觉,把一些原理弄懂,今天就讲下自定义组合控件,这个特别适合在标题栏或者设置界面,看下面图: 就非常适合使用组合控件了,现在写一个玩玩: activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

Android自定义组合控件的实现

需求:在黑马做安全卫士的时候,功能9设置中心界面如下: 在点击item的时候,复选框会反转状态,同时"自动更新已经关闭"会变换内容和颜色. 可以发现这个界面类似ListView,但又不是ListView,因为它的item数量是固定的,且最后一 item和之前的都不一样.虽然这个看着像是标准的List结构,实则每个item不是完全一样,因为 每个item的提示文本(如"自动更新已经关闭")的内容并不完全一样. 假如用一般方式来布局的话,4个item就会有3*4 = 1