我想查看我的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。
我注意到,我的標題欄選擇選項菜單是不可更改的。
請添加您的XML代碼,也許這裏有一個小錯誤? – mikepenz