2012-02-19 76 views
-1

我正在考慮爲我的應用程序的界面,所以我應用了一個GridView有一個儀表板,但我不滿意的結果,所以我瀏覽了一些應用程序,發現這個有一個非常漂亮的界面: http://images.frandroid.com/wp-content/uploads/2012/02/patiner.jpg 我想知道這是基於GridView還是簡單的按鈕圖像還是有任何其他提示? 非常感謝。如何創建這樣的界面?

+0

請儘量回答問題,不要打擾投票! – androniennn 2012-02-19 20:17:12

+0

不知道,但它確實讓我想家。 – 2012-02-19 20:20:45

+0

*「請嘗試[..]」* - 很好的建議。這正是你從我這裏得到一個讚譽的原因。有很多方法可以實現這一點。但你似乎沒有嘗試過。回答你的問題,我不會獎勵你的懶惰。 – 2012-02-19 20:25:35

回答

1

這應該讓你得到你想要的東西。但我使用常規按鈕,你可能會需要圖像按鈕。我只是碰巧打開了這段代碼,所以爲了讓它更「友好」,它可能並不完美。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical"> 
      <LinearLayout 
       android:id="@+id/LinearLayout01" 
       android:layout_width="match_parent" 
       android:layout_height="fill_parent" 
       android:layout_weight="1" > 

       <Button 
        android:id="@+id/btn1" 
        android:layout_weight="1" 
        android:text="1" 
        android:layout_width="0dp"/> 

       <Button 
        android:id="@+id/btn2" 
        android:layout_width="0dp" 
        android:layout_weight="1" 
        android:text="2" /> 
      </LinearLayout> 

      <LinearLayout 
       android:id="@+id/LinearLayout02" 
       android:layout_width="match_parent" 
       android:layout_height="fill_parent" 
       android:layout_weight="1" > 

       <Button 
        android:id="@+id/btn3" 
        android:layout_weight="1" 
        android:text="1" 
        android:layout_width="0dp"/> 

       <Button 
        android:id="@+id/btn4" 
        android:layout_width="0dp" 
        android:layout_weight="1" 
        android:text="2" /> 
      </LinearLayout> 
</LinearLayout> 
+0

謝謝你回答,只是不放棄投票:)。無論如何,這只是簡單的按鈕,默認的Android的,如何使圖像按鈕?有沒有可以做到的XML代碼?非常感謝你。 – androniennn 2012-02-19 20:21:55

+1

是的,如果您使用圖形編輯器,他們也在那裏。這很簡單,'' – bwoogie 2012-02-19 20:23:51

+0

Clear;)。非常感謝你 :)。 – androniennn 2012-02-19 20:25:34