1、在XML中定義View的一個小錯誤 java
<?xml version="1.0" encoding="utf-8"?> android
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 佈局
android:orientation="vertical" this
android:layout_width="fill_parent" spa
android:layout_height="fill_parent" xml
> utf-8
<TextView 博客
android:layout_width="fill_parent" string
android:layout_height="wrap_content" it
android:text="@string/hello"
/>
<com.fxhy.stady.HelloView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
super.onCreate(savedInstanceState);
2、解決方法
/**
* 這個是咱們要在XML中初始化用的
* */
public HelloView(Context context,AttributeSet attrs){
super(context, attrs);
3、另外一中在XML中的View佈局
<?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"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<view class="com.fxhy.stady.HelloView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>