最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android xmlns 的作用及其自定義實(shí)例詳解

 更新時(shí)間:2017年06月13日 10:12:01   投稿:lqh  
這篇文章主要介紹了 Android xmlns 的作用及其自定義實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下

 Android xmlns 的作用及其自定義實(shí)例詳解

 xmlns:Android="http://schemas.android.com/apk/res/android的作用是:

這個(gè)是xml的命名空間,有了他,你就可以alt+/作為提示,提示你輸入什么,不該輸入什么,什么是對(duì)的,什么是錯(cuò)的,也可以理解為語法文件?;蛘哒Z法判斷器什么的

這個(gè)主要作用是在運(yùn)行的時(shí)候那些控件的屬性都是通過它來識(shí)別的,如果上面你寫錯(cuò)了,不會(huì)有任何問題,但是在運(yùn)行的時(shí)候就會(huì)有問題,提示你沒有指定寬度等什么。這個(gè)是不用聯(lián)網(wǎng)的。

Android 自定義的xmlns其實(shí)很簡(jiǎn)單,語法規(guī)則是:

在使用到自定義View的xml布局文件中需要加入xmlns:前綴=http://schemas.android.com/apk/res/你的應(yīng)用程序包路徑.

下面是一個(gè)簡(jiǎn)單的例子:

結(jié)構(gòu)圖:

MyView.java

package kexc.myView;

import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.widget.TextView;
public class MyView extends TextView { 
 private String mString = "Welcome to Kesion's blog";
 
 public MyView(Context context, AttributeSet attrs) {
 super(context, attrs);
 TypedArray a = context.obtainStyledAttributes(attrs, 
    R.styleable.MyView);
 int textColor = a.getColor(R.styleable.MyView_textColor, 
    0XFFFFFFFF); 
  float textSize = a.getDimension(R.styleable.MyView_textSize, 36); 
  mString = a.getString(R.styleable.MyView_title);
 setText(mString);
 setTextSize(textSize);
 setTextColor(textColor);
 }
}

 main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
 xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:test="http://schemas.android.com/apk/res/kexc.myView"
 android:orientation="vertical" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent"> 
 <TextView 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="@string/hello" 
  /> 
 <kexc.myView.MyView 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent"
  test:title="wo shi text"
  test:textSize="20px" 
  test:textColor="#fff" 
 />
</LinearLayout>

 屬性文件 value/attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="MyView"> 
  <attr name="textColor" format="color"/> 
 <attr name="textSize" format="dimension" /> 
 <attr name="title" format="string"/>
 </declare-styleable>
</resources>

運(yùn)行結(jié)果:

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:

相關(guān)文章

最新評(píng)論

泸水县| 缙云县| 温州市| 丰都县| 南康市| 准格尔旗| 宜都市| 乌鲁木齐县| 蒙自县| 安义县| 延庆县| 花莲县| 永年县| 新乡市| 综艺| 横山县| 柯坪县| 通州区| 育儿| 汉阴县| 弥勒县| 防城港市| 万全县| 筠连县| 桦南县| 慈溪市| 盐边县| 郧西县| 泉州市| 新龙县| 洮南市| 中牟县| 林州市| 宁远县| 都匀市| 安泽县| 金昌市| 巴林左旗| 普宁市| 平山县| 广安市|