`
abc20899
  • 浏览: 929022 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Android如何在xml布局中使用自定义属性

 
阅读更多
<com.android.launcher2.DragLayer
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
 
    android:id="@+id/drag_layer"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <include layout="@layout/all_apps" />
 
    <!-- The workspace contains 3 screens of cells -->
    <com.android.launcher2.Workspace
        android:id="@+id/workspace"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="horizontal"
        android:fadeScrollbars="true"
        launcher:defaultScreen="2">
注意到其中的两处:
xmlns:launcher=”http://schemas.android.com/apk/res/com.android.launcher”

launcher:defaultScreen="2"
可以看出在这个布局文件中,使用了自定义属性。

以前没遇到过,既然这里碰到了,就顺便学习下,下面就写个简单的示例,权当学习笔记,便于以后查阅。
1. 定义一些自定义属性
建立一个属性xml文件: values/attrs.xml, 内容如下:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
    <!-- the relation between the icon and text. -->
    <attr name="relation">
        <enum name="icon_left"     value="0" />
        <enum name="icon_right"    value="1" />
        <enum name="icon_above"    value="2" />
        <enum name="icon_below"    value="3" />
    </attr>
     
    <skip />
     
    <declare-styleable name="IconText">
         <attr name="relation" />
         <attr name="icon"         format="reference" />
         <attr name="text"         format="string" />
       <attr name="text_size"     format="dimension" />
       <attr name="text_color"    format="integer" />
       <attr name="space"         format="dimension" />
    </declare-styleable>
     
</resources>
解释如下:
属性relation有4种可选值:icon_left, icon_right, icon_above,icon_below.
属性icon的可选值为引用: 例如:"@/drawbable/icon".
属性text的可选值为string, 例如: "Hello world", 也可是string的引用"@string/hello".
属性text_size的可选值为尺寸大小,例如:20sp、18dip、20px等.
属性text_color的可选值为整数,例如:"0xfffffff", 也可以是color的引用"@color/white".

2. 定义一个能够处理这些属性值的view或者layout类
package com.braincol.viewattrs;
 
 
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
 
public class IconTextView  extends LinearLayout {
    private final static String TAG = "IconTextView";
    private final int ICON_LEFT = 0;
    private final int ICON_RIGHT = 1;
    private final int ICON_ABOVE = 2;
    private final int ICON_BELOW = 3;
 
    private TextView mTextView;
    private ImageView mImageView;
 
    private int mRelation = ICON_LEFT;
    private String mText = "";
    private int mIconId;
    private float mTextSize;
    private int mSpace;
 
    public IconTextView(Context context, AttributeSet attrs){
        super(context, attrs);
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.IconText);
 
        mRelation = a.getInt(R.styleable.IconText_relation, ICON_LEFT);
        Log.d(TAG,"mRelation: "+mRelation);
 
        mText = a.getString(R.styleable.IconText_text);
        Log.d(TAG,"mText: "+mText);
 
        mTextSize = a.getDimensionPixelSize(R.styleable.IconText_text_size, 12);
        Log.d(TAG,"mTextSize: "+mTextSize);
 
        mSpace = a.getDimensionPixelSize(R.styleable.IconText_space, 5);
        Log.d(TAG,"mSpace: "+mSpace);
 
        mIconId = a.getResourceId(R.styleable.IconText_icon, R.drawable.icon);
        Log.d(TAG,"mIconId: "+mIconId);
 
        a.recycle();
 
        mTextView = new TextView(context);
        mTextView.setText(mText);
        mTextView.setTextSize(mTextSize);
 
        mImageView = new ImageView(context);
        mImageView.setImageResource(mIconId);  
 
        int left    = 0;
        int top     = 0;
        int right    = 0;
        int bottom    = 0;
        int orientation = HORIZONTAL;
        int textViewIndex = 0;
        switch(mRelation){
        case ICON_ABOVE:
            orientation = VERTICAL;
            bottom = mSpace;
            textViewIndex = 1;
            break;
        case ICON_BELOW:
            orientation = VERTICAL;
            top = mSpace;
            break;
        case ICON_LEFT:
            right = mSpace;
            textViewIndex = 1;
            break;
        case ICON_RIGHT:
            left = mSpace;
            break;
        }
        this.setOrientation(orientation);
        this.addView(mImageView);
        mImageView.setPadding(left, top, right, bottom);
        this.addView(mTextView, textViewIndex);
    }
}
可以看出这个LinearLayout 子类IconTextView中只有两个元素,ImageView 和mTextView,通过从xml配置文件中读取属性值来决定icon和text的内容、相对位置及其它属性。

3. 在layout布局文件中使用这个自定布局及其属性
layout/main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<com.braincol.viewattrs.IconTextView
    android:id="@+id/icontext_01"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:icontext="http://schemas.android.com/apk/res/com.braincol.viewattrs"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    icontext:relation="icon_left"
    icontext:icon="@drawable/hi"
    icontext:text="hi,how are you!"
    icontext:text_size="12sp"
  />
   
</LinearLayout>
可以看到我们在这个布局文件中加入了一个新的命名空间:
xmlns:icontext="http://schemas.android.com/apk/res/com.braincol.viewattrs"
并使用我们自定义的那些属性:
icontext:relation="icon_left"
icontext:icon="@drawable/hi"
icontext:text="hi, how are you !"
icontext:text_size="30sp"
4. 在Activity中使用该布局

package com.braincol.viewattrs;
 
import android.app.Activity;
import android.os.Bundle;
 
public class ViewAttrs extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}
分享到:
评论

相关推荐

    Android如何使用XML自定义属性

    #### 二、在布局中使用自定义属性 1. **在布局文件中引用自定义属性** 在布局文件中,你可以通过指定属性名称的方式给自定义属性赋值: ```xml android:id="@+id/custom_view" app:customBackgroundColor=...

    Android Tablayout 自定义Tab布局的使用案例

    在上面的代码中,我们使用了一个自定义的 Tab 布局文件 `widget_choose_icon_tab_bg.xml`,该文件代码如下: ```xml &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android=...

    Android 自定义气泡布局

    在布局的XML文件中,可以使用`android:background`属性设置填充颜色;在代码中,可以通过`setBackgroundColor()`方法动态更改颜色。 6. **实现步骤**: - 创建一个新的`View`类,继承自`View`或`FrameLayout`。 -...

    Decor,android布局装饰器:在布局文件中注入自定义属性,使用装饰器消除带有自定义视图的不必要的类爆炸。.zip

    Decor是Android开发中的一款开源库,其主要目的是简化布局文件中的自定义视图处理,通过在XML布局中注入自定义属性,实现对视图的装饰,从而避免因为自定义视图而频繁创建新类,导致的类爆炸问题。类爆炸问题在大型...

    android自定义属性(三种方法dome)

    定义和获取属性后,我们可以在XML布局文件中使用这些自定义属性。比如: ```xml android:layout_width="wrap_content" android:layout_height="wrap_content" app:customTextColor="@color/colorPrimary" app:...

    使用自定义属性源代码

    现在,我们可以在XML布局中使用这个自定义属性: ```xml android:layout_width="match_parent" android:layout_height="match_parent" app:rainColor="@color/colorPrimary" /&gt; ``` 至于"RainAnimation"这个...

    android在布局文件中自定义参数并在初始化时获取

    3. 在布局文件中使用自定义属性: ```xml android:layout_width="wrap_content" android:layout_height="wrap_content" app:borderWidth="5dp" /&gt; ``` 这里的`app:borderWidth`就是我们自定义的属性,`5dp`是其...

    android 自定义view及自定义属性

    2. **在布局文件中使用**:在XML布局文件中,使用`app:`前缀(对于AndroidX库)或`@namespace/`(对于Support Library)指定自定义命名空间,并引用自定义属性。 ```xml android:layout_width="wrap_content" ...

    Android自定义属性百分比布局

    "Android自定义属性百分比布局"就是一种这样的技术,它允许我们在布局中使用子控件相对于父容器的百分比大小,从而实现响应式设计。下面我们将详细探讨这一主题。 首先,`PercentLayout`是Android支持的一种布局...

    android 重写控件添加自定义属性

    现在,我们可以在布局XML文件中使用这个自定义控件,并设置自定义属性: ```xml android:layout_width="wrap_content" android:layout_height="wrap_content" app:customTextSize="24sp" app:customTextColor=...

    Android自定义toolbar布局

    为了进一步自定义`Toolbar`,我们可以在XML布局文件中添加其他视图元素,如`TextView`、`ImageView`等。例如,如果你想要在`Toolbar`中添加一个Tab,你可以这样做: ```xml &lt;androidx.appcompat.widget.Toolbar .....

    Android 自定义属性及其引用

    在XML布局中,我们可以通过自定义属性设置吐司的显示时长: ```xml xmlns:app="http://schemas.android.com/apk/res-auto" app:duration="5000" /&gt; ``` 通过这种方式,`CustomToast`将会显示5秒,而不是默认的...

    Android高手进阶之自定义View,自定义属性(带进度的圆形进度条)源码

    在Android中,我们可以为自定义View定义自己的XML属性,使得在布局文件中更容易配置和使用。这需要以下几个步骤: 1. 在res/values/attrs.xml文件中定义自定义属性,如`progressColor`(进度颜色)、`...

    Android 中自定义属性(attr.xml,TypedArray)的使用

    以下将详细介绍如何在Android中使用自定义属性以及它们的工作原理。 一、自定义属性的声明 1. 在res/values目录下创建或编辑attr.xml文件。这个文件是用来定义自定义属性的,例如: ```xml &lt;!-- 定义一个布尔...

    自定义View使用自定义属性

    在这个案例中,我们将深入探讨如何在自定义View中使用自定义属性。 首先,我们需要了解自定义属性是如何声明的。在Android中,自定义属性通常在项目的`res/values/attrs.xml`文件中定义。例如: ```xml ...

    android 自定义属性实现 ImageView 透明度渐变效果

    在布局文件中,我们可以像使用系统属性一样使用自定义属性。例如,在一个ImageView中应用这个属性: ```xml android:layout_width="wrap_content" android:layout_height="wrap_content" app:...

    Android中自定义属性attrs.xml、TypedArray的使用

    接下来,我们要在自定义组件中使用这些属性。这通常在`onCreateView()`或`onInitializeTextView()`方法中完成,通过`TypedArray`来获取属性值。以下是一个`MyTextView`类的示例: ```java public class MyTextView ...

    Android自定义Attr属性

    在res/layout的XML布局文件中,使用`&lt;declare-styleable&gt;`标签来声明自定义控件,并引用刚刚定义的属性。例如,假设我们有一个自定义的按钮: ```xml android:layout_width="wrap_content" android:layout_...

    android 自定义控件 自定义属性详细介绍

    例如,如果一个布局常常由ImageView、ImageButton和TextView组成,我们可以创建一个新的自定义View,将这三个组件集成在一起,这样在代码中只需要引用一个控件,既提高了效率,也使XML布局文件更加简洁。 自定义...

    AttrTest android自定义属性

    3. 在布局文件中使用自定义属性。 4. 在`AndroidManifest.xml`中声明支持的命名空间,以便在布局编辑器中预览。 通过学习和实践这个简单的实例,你可以掌握Android自定义属性的基本用法,从而更好地定制你的应用...

Global site tag (gtag.js) - Google Analytics