2011-08-04 54 views
0

我正在看這 plugin,我想改變演示使用佈局,而不是寫在代碼中的一切。如何實現插件在佈局中工作?

// note that you can also define your own views directly in a resource XML, too by using: 
    // <de.marcreichelt.android.RealViewSwitcher 
    //  android:layout_width="fill_parent" 
    //  android:layout_height="fill_parent" 
    //  android:id="@+id/real_view_switcher"> 
    //   <!-- your views here --> 
    // </de.marcreichelt.android.RealViewSwitcher> 

所以有可能這樣做,但我不能得到它的工作。我做了2個佈局。在我的主要佈局我有這個

<?xml version="1.0" encoding="utf-8"?> 
<de.marcreichelt.android.RealViewSwitcher 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:id="@+id/real_view_switcher"> 

<include android:id="@+id/myid1" layout="@layout/second" /> 

</de.marcreichelt.android.RealViewSwitcher> 

雖然

Description Resource Path Location Type 
error: Error parsing XML: unbound prefix main.xml /RealViewSwitcher/res/layout line 2 Android AAPT Problem 

所以我想我需要給它一個命名空間或東西,我得到這個錯誤,但我不知道用什麼。

我只是想我唯一知道

xmlns:android="http://schemas.android.com/apk/res/android 

//第二個佈局。

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout android:id="@+id/relativeLayout1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     xmlns:android="http://schemas.android.com/apk/res/android"> 
    <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:text="1" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" android:layout_marginLeft="82dp" android:layout_marginTop="57dp"></TextView> 

</RelativeLayout> 

回答

0

在自定義標籤中使用

xmlns:android="http://schemas.android.com/apk/res/android
。它應該工作。