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

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

創(chuàng)新互聯(lián)主要從事網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)淮安,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專(zhuān)業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220

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

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

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

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

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

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

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

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

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é)果:

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

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

文章題目:Androidxmlns的作用及其自定義實(shí)例詳解
鏈接地址:http://muchs.cn/article44/pppphe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、建站公司、域名注冊(cè)、Google小程序開(kāi)發(fā)、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化