2013-10-30 81 views
0
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity" 
    android:background="@drawable/background"> 

    <ImageView 
     android:id="@+id/iv_bollywood" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="94dp" 
     android:src="@drawable/bollywood" /> 

    <ImageView 
     android:id="@+id/iv_hollywood" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_bollywood" 
     android:layout_below="@+id/iv_bollywood" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/hollywood" /> 

    <ImageView 
     android:id="@+id/iv_animated" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_hollywood" 
     android:layout_below="@+id/iv_hollywood" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/animated" /> 

    <ImageView 
     android:id="@+id/iv_hindhi_dub" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
       android:layout_alignLeft="@+id/iv_animated" 
     android:layout_below="@+id/iv_animated" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/hindidub" /> 

    <ImageView 
     android:id="@+id/iv_other" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_hindhi_dub" 
     android:layout_below="@+id/iv_hindhi_dub" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/other" /> 

     </RelativeLayout> 


i am new in android.i want to add scroll in my application. 

我想在我的imageview.i中使用scrollview我希望我的應用程序中的水平和垂直滾動視圖,我怎麼能this.please幫助我,並給我任何代碼示例相關的我的application.thankyou ... :)如何在scrollview中添加多個圖像瀏覽?

+0

檢查此鏈接:http://stackoverflow.com/questions/2044775/scrollview-vertical-and-horizo​​ntal-in-android – Shankar

回答

2
<?xml version="1.0" encoding="utf-8"?> 
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/scrollView1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="center" 
     > 

     <RelativeLayout 
      android:layout_width="318dp" 
      android:layout_height="495dp" 
      > 

<ImageView 
     android:id="@+id/iv_bollywood" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="94dp" 
     android:src="@drawable/bollywood" /> 

    <ImageView 
     android:id="@+id/iv_hollywood" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_bollywood" 
     android:layout_below="@+id/iv_bollywood" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/hollywood" /> 

    <ImageView 
     android:id="@+id/iv_animated" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_hollywood" 
     android:layout_below="@+id/iv_hollywood" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/animated" /> 

    <ImageView 
     android:id="@+id/iv_hindhi_dub" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
       android:layout_alignLeft="@+id/iv_animated" 
     android:layout_below="@+id/iv_animated" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/hindidub" /> 

    <ImageView 
     android:id="@+id/iv_other" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/iv_hindhi_dub" 
     android:layout_below="@+id/iv_hindhi_dub" 
     android:layout_marginTop="14dp" 
     android:src="@drawable/other" /> 

     </RelativeLayout> 
</ScrollView > 

你必須要滾動型父(垂直滾動)...

+0

thanku先生其工作.... :) –

+0

好的...請upvote和接受答案,以便它可以對其他人有所幫助。 –

+0

@AnilBhatiya我們得到這兩個垂直和水平滾動? – Raghunandan

0
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<RelativeLayout 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@drawable/background"> 

<ImageView 
    android:id="@+id/iv_bollywood" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="94dp" 
    android:src="@drawable/bollywood" /> 

<ImageView 
    android:id="@+id/iv_hollywood" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/iv_bollywood" 
    android:layout_below="@+id/iv_bollywood" 
    android:layout_marginTop="14dp" 
    android:src="@drawable/hollywood" /> 

<ImageView 
    android:id="@+id/iv_animated" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/iv_hollywood" 
    android:layout_below="@+id/iv_hollywood" 
    android:layout_marginTop="14dp" 
    android:src="@drawable/animated" /> 

<ImageView 
    android:id="@+id/iv_hindhi_dub" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
      android:layout_alignLeft="@+id/iv_animated" 
    android:layout_below="@+id/iv_animated" 
    android:layout_marginTop="14dp" 
    android:src="@drawable/hindidub" /> 

<ImageView 
    android:id="@+id/iv_other" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/iv_hindhi_dub" 
    android:layout_below="@+id/iv_hindhi_dub" 
    android:layout_marginTop="14dp" 
    android:src="@drawable/other" /> 

</RelativeLayout> 
</ScrollView> 
0
<?xml version="1.0" encoding="utf-8"?> 
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

     <HorizontalScrollView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="50dp" > 

      <RelativeLayout 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:background="@drawable/background" > 

       <ImageView 
        android:id="@+id/iv_bollywood" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignParentTop="true" 
        android:layout_centerHorizontal="true" 
        android:layout_marginTop="94dp" 
        android:src="@drawable/bollywood" /> 

       <ImageView 
        android:id="@+id/iv_hollywood" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignLeft="@+id/iv_bollywood" 
        android:layout_below="@+id/iv_bollywood" 
        android:layout_marginTop="14dp" 
        android:src="@drawable/hollywood" /> 

       <ImageView 
        android:id="@+id/iv_animated" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignLeft="@+id/iv_hollywood" 
        android:layout_below="@+id/iv_hollywood" 
        android:layout_marginTop="14dp" 
        android:src="@drawable/animated" /> 

       <ImageView 
        android:id="@+id/iv_hindhi_dub" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignLeft="@+id/iv_animated" 
        android:layout_below="@+id/iv_animated" 
        android:layout_marginTop="14dp" 
        android:src="@drawable/hindidub" /> 

       <ImageView 
        android:id="@+id/iv_other" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignLeft="@+id/iv_hindhi_dub" 
        android:layout_below="@+id/iv_hindhi_dub" 
        android:layout_marginTop="14dp" 
        android:src="@drawable/other" /> 
      </RelativeLayout> 
     </HorizontalScrollView> 

     </ScrollView> 

試試這一個水平和垂直滾動視圖

+0

你好,試試我的新答案... –

+0

你可以編輯你原來的帖子,而不是張貼一個新的答案 – Raghunandan

+0

請檢查這個https://groups.google.com/forum/#!topic/android-developers/xQrL5o7JgXQ和這個https://groups.google.com/forum/#!topic/android-beginners/wFklrKdHnRg/查看Romain Guy的報價。 Romain Guy和Dianne hackborn爲谷歌工作 – Raghunandan

相關問題