eclipse中的图形布局不适用于插入的片段

时间:2014-10-31 17:14:24

标签: android xml eclipse android-fragments

我正在使用Eclipse ADT,我遇到布局文件问题。我可以打开它的内部xml编辑器,但是当我打开图形布局工具时,它没有显示任何内容,好像那里没有xml文件。

这是xml代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.hermes.view.activities.SubTaskActivity" >
<fragment
    android:id="@+id/map_fragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="35"
    android:layout_marginBottom="15dp"
    android:name="com.hermes.view.fragments.MiniMapFragment"/>
<ListView
    android:id="@+id/list_subtaks"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="60" />
</LinearLayout>

注意:我想显示图形布局工具的屏幕截图,但StackOverflow不允许它用于声誉信息:/

这是一个日食错误还是我用xml文件做的事情。我还必须说,只有在xml文件中放入一个片段才会发生这种情况。如果我删除片段标签,问题就会消失,但我需要看到带有片段的设计!。

感谢您的帮助

0 个答案:

没有答案