91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android xmlns 的作用及其自定義實例詳解

發布時間:2020-09-16 23:51:10 來源:腳本之家 閱讀:203 作者:lqh 欄目:移動開發

 Android xmlns 的作用及其自定義實例詳解

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

這個是xml的命名空間,有了他,你就可以alt+/作為提示,提示你輸入什么,不該輸入什么,什么是對的,什么是錯的,也可以理解為語法文件。或者語法判斷器什么的

這個主要作用是在運行的時候那些控件的屬性都是通過它來識別的,如果上面你寫錯了,不會有任何問題,但是在運行的時候就會有問題,提示你沒有指定寬度等什么。這個是不用聯網的。

Android 自定義的xmlns其實很簡單,語法規則是:

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

下面是一個簡單的例子:

結構圖:

Android xmlns 的作用及其自定義實例詳解

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>

運行結果:

Android xmlns 的作用及其自定義實例詳解

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

眉山市| 吴堡县| 沂水县| 南阳市| 泌阳县| 仙居县| 那坡县| 岳阳市| 靖州| 台山市| 沽源县| 湖南省| 新竹县| 诸暨市| 汤阴县| 九龙县| 府谷县| 庆阳市| 屏东市| 航空| 河津市| 平遥县| 静乐县| 遵化市| 哈巴河县| 关岭| 浦北县| 万安县| 澜沧| 博爱县| 文化| 富源县| 南汇区| 定结县| 宁都县| 洛浦县| 望城县| 陵水| 鄂托克前旗| 潼关县| 六安市|