2017-02-11 123 views
0

我有這個錯誤,我不知道如何解決它。當我嘗試添加第三方庫XML元素時發生錯誤,但我無法解決它。錯誤:(28)解析XML時出錯:沒有找到元素

有些地方告訴我,這是一個Android Studio問題,它通過重新啓動程序解決,我做到了,並沒有解決問題。下面是代碼:

public class HorizontalNtbActivity extends Activity { 

    @Override 
    protected void onCreate(final Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_horizontal_ntb); 
     initUI(); 
    } 

    private void initUI() { 
     final ViewPager viewPager = (ViewPager) findViewById(R.id.vp_horizontal_ntb); 
     viewPager.setAdapter(new PagerAdapter() { 
      @Override 
      public int getCount() { 
       return 5; 
      } 

      @Override 
      public boolean isViewFromObject(final View view, final Object object) { 
       return view.equals(object); 
      } 

      @Override 
      public void destroyItem(final View container, final int position, final Object object) { 
       ((ViewPager) container).removeView((View) object); 
      } 

      @Override 
      public Object instantiateItem(final ViewGroup container, final int position) { 
       final View view = LayoutInflater.from(
         getBaseContext()).inflate(R.layout.item_vp, null, false); 

       final TextView txtPage = (TextView) view.findViewById(R.id.txt_vp_item_page); 
       txtPage.setText(String.format("Page #%d", position)); 

       container.addView(view); 
       return view; 
      } 
     }); 

     final String[] colors = getResources().getStringArray(R.array.default_preview); 

     final NavigationTabBar navigationTabBar = (NavigationTabBar) findViewById(R.id.ntb_horizontal); 
     final ArrayList<NavigationTabBar.Model> models = new ArrayList<>(); 
     models.add(
       new NavigationTabBar.Model.Builder(
         getResources().getDrawable(R.drawable.ic_first), 
         Color.parseColor(colors[0])) 
         .selectedIcon(getResources().getDrawable(R.drawable.ic_sixth)) 
         .title("Heart") 
         .badgeTitle("NTB") 
         .build() 
     ); 
     ... 
    } 
    .... 
} 

activity_main.xml中:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:background="#423752" 
    android:orientation="vertical"> 

    <android.support.v4.view.ViewPager 
     android:id="@+id/PostList" 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1"/> 

    <devlight.io.library.ntb.NavigationTabBar 
     android:id="@+id/ntb_horizontal" 
     android:layout_width="match_parent" 
     android:layout_height="60dp" 
     app:ntb_badge_gravity="top" 
     app:ntb_badge_position="right" 
     app:ntb_badged="true" 
     app:ntb_scaled="true" 
     app:ntb_tinted="true" 
     app:ntb_title_mode="all" 
     app:ntb_titled="true" 
     app:ntb_swiped="true"/> 
    ... 
</LinearLayout> 
+2

尋求調試幫助的問題('**爲​​什麼不是這個代碼工作?**')必須包含所需的行爲,特定的問題或錯誤以及在問題本身中重現**的最短代碼** 。沒有**明確問題陳述**的問題對其他讀者沒有用處。請參閱:[如何創建最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – Biffen

回答

0

我假設你的問題的稱號意味着你得到錯誤代碼28的錯誤谷歌搜索爲了這個,我發現this page指出錯誤代碼28意味着:

The version information wasn’t present in the XML declaration.

因此,要解決這個錯誤,只需添加你的第一個標籤上面下面一行r佈局:

<?xml version="1.0" encoding="utf-8"?> 

希望這有助於!

相關問題