2011-08-01 141 views
2

我想查看我的Android XML文件格式的設計圖,但它不顯示,我確實在XML Eclipse和ADT一些設計,日食ADT圖形佈局

當我在圖形佈局點擊它不顯示任何東西,並說'缺少主題',我也試過:右鍵單擊XML文件> openwith> android佈局編輯器,但無濟於事。
我的開發環境是:

Eclipse的赫利俄斯服務版本2,
的Android開發工具包版本:12.0.0.v201106281929-138431,
的Dalvik調試監視器服務版本: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> 

我上傳的截圖here
我注意到,我的標題欄選擇選項菜單是不可更改的。

+0

請添加您的XML代碼,也許這裏有一個小錯誤? – mikepenz

回答

3

嘗試從下拉列表中更改SDK level/version。它每次都爲我解決了這個問題。

+0

嗨,我使用的是Android 2.2,現在從下拉列表中我改變了android 2.3有時3.0,所以到下一個,我再次選擇2.2後選擇不同的選項,這件事情使組件派勒特可見在左側,然後我只是拖動一個組件從它的位置在Pallete這個東西使圖形佈局visible.thanks @Sheikh阿曼 – aftab

+0

很高興知道它的工作。如果您的問題解決了,請將任何答案(解決您的問題)標記爲已接受的答案 –