2013-04-01 41 views
1

我只是想知道如何設計一個如下圖所示的活動。當您選擇查看Google Play中的應用詳情時,也會找到此模式。如何設計一個android viewpager

我們是否使用ViewPager進行這種設計?

鏈接到示例,教程將不勝感激。

enter image description here

+0

你想在平板電腦或移動設備中使用這種佈局嗎?在平板電腦中,它的碎片將爲您做到,在移動設備上它不值得如此笨拙的佈局! –

+0

使用碎片我們可以實現佈局。如果你的應用只支持Tablets(3.0以上),我們可以直接使用,否則我們可以使用支持jar android-support-v4.jar http://developer.android.com/tools/extras/support-library.html – sri

+0

* Fragments *可以幫助你。 –

回答

0

我不知道它在幹什麼與否的一個有效途徑。我更喜歡完全使用線性佈局。

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

<!--  splitting into 2 horizontal --> 
    <LinearLayout 
     android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="horizontal" 
     > 

<!--   1st part of horizontal --> 
     <LinearLayout 

      android:layout_width="x_value" 
      android:layout_height="match_parent" 
      android:orientation="vertical" 
      > 
      <ScrollView 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:scrollbars="vertical" 
       android:layout_weight="1"> 

<!--   include content --> 

      </ScrollView> 


     </LinearLayout> 

     <!--   2nd part of horizontal --> 

     <LinearLayout 

      android:layout_width="x_value" 
      android:layout_height="match_parent" 
      android:orientation="vertical" 
      > 

        <!-- fixed header part--> 
          <LinearLayout    
          android:layout_width="match_parent" 
          android:layout_height="y_value"   
          > 
          </LinearLayout> 

          <!-- next 2 vertical splits with scrollbar--> 

          <LinearLayout 
           android:layout_width="match_parent" 
           android:layout_height="y_value" 
           android:orientation="vertical" 
           > 
               <ScrollView 
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent" 
                android:scrollbars="vertical" 
                android:layout_weight="1"> 
                  <LinearLayout    
                  android:layout_width="match_parent" 
                  android:layout_height="y_value" 
                  > 
                    <ScrollView 
                     android:layout_width="fill_parent" 
                     android:layout_height="fill_parent" 
                     android:scrollbars="horizontal" 
                     android:layout_weight="1"> 

                     <!-- include content --> 

                    </ScrollView>  


                  </LinearLayout> 

                  <LinearLayout    
                  android:layout_width="match_parent" 
                  android:layout_height="y_value" 
                  > 

                  </LinearLayout> 
               </ScrollView> 

          </LinearLayout> 

      </LinearLayout> 


    </LinearLayout> 

</LinearLayout> 


I hope this would give some idea.