2012-02-22 7 views
-1

私はAndroidに実際に慣れています。私はEclipseでAndroidのUIを作成しました。この画像のように見えます。実際のAndroid UIではありません。みんな私を助けてください。私はアンドロイド4.01プロジェクトを使用しています。あなたにできるAndroid UIの問題

image 1

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello" /> 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="TextView" /> 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Button" /> 

    <ToggleButton 
     android:id="@+id/toggleButton1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="ToggleButton" /> 

    <CheckBox 
     android:id="@+id/checkBox1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="CheckBox" /> 

    <RadioButton 
     android:id="@+id/radioButton1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="RadioButton" /> 

    <Spinner 
     android:id="@+id/spinner1" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" style="@drawable/ic_launcher"/> 

</LinearLayout> 
+1

あなたを助けるしてください:このスクリーンショットを見てください

を次のように 私main.xmlですここに画像をアップロードしますか?私は今仕事中でリンクにアクセスできません! – Hiral

+0

ここに画像をアップロードすることは許可されていません。ここからイメージを見ることができないのですか? –

+0

「実際のアンドロイドのUIではありませんが、アンドロイドの実際の要素のスタイルはどうやって得ることができますか? – Hiral

答えて

2

変更が3.0または2.3へのAndroidのプロジェクトが、多分これは

+0

それは作品、ありがとうございます.. –