Eclipse ADT графический макет - PullRequest
       9

Eclipse ADT графический макет

2 голосов
/ 01 августа 2011

Я пытаюсь просмотреть мой дизайн-макет XML-файла Android, но он не отображается, я выполнил некоторые разработки в XML с помощью eclipse и ADT,

Когда я нажимаю на Graphical Layout, он ничего не отображает и говорит «Missing Theme», я также пытался: Щелкните правой кнопкой мыши XML-файл> openwith> android layout layout, но безрезультатно.
Моя среда разработки:

Eclipse Helios Service Release 2,
Версия Android Development Toolkit: 12.0.0.v201106281929-138431,
Dalvik Debug Monitor Service Версия: 12.0.0.v201106281929-138431,
Версия Traceview: 12.0.0.v201106281929-138431.
В чем может быть проблема`?

Мой xml-файл, как показано ниже

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout01"android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/relativeLayout1">
<RelativeLayout android:id="@+id/RelativeLayout02"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<RelativeLayout android:id="@+id/RelativeLayout05"
android:layout_below="@id/RelativeLayout04" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:background="@color/brightblue">
<TextView android:id="@+id/TextView06"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/SaveMyBackupTo" android:textColor="@color/black"
android:textStyle="bold" android:layout_marginLeft="5dip"
android:lines="2" android:layout_alignParentLeft="true"
android:singleLine="false" android:layout_toLeftOf="@+id/Button09"
android:layout_marginTop="5dip"></TextView>
<CheckBox android:id="@+id/CheckBox01" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" android:text="@string/EnableAutoSave"
android:textColor="@color/black" android:layout_below="@+id/Button09"></CheckBox>
<Button android:id="@+id/Button09" android:layout_alignParentRight="true" android:textSize="12dip"
android:layout_width="wrap_content" android:layout_height="30dip"
android:text="Memory Card" android:layout_marginTop="5dip"></Button>
</RelativeLayout>
</RelativeLayout>
</ScrollView>
</RelativeLayout>

Я загрузил скриншот здесь .
я заметил, что мое меню выбора в строке заголовка не может быть изменено.

Ответы [ 2 ]

3 голосов
/ 02 августа 2011

Попробуйте изменить SDK level/version из выпадающего списка.это решало эту проблему для меня каждый раз.

1 голос
/ 11 января 2012

У меня была такая же проблема.решение размещено здесь .

...