2017-02-06 17 views
0

私は縦に大きな画像を持っています、私はそれをスクロール可能にしたいです。 私は、このようにそれを作った大きな画像縦スクロール

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/logoimage" 
      android:scrollbarAlwaysDrawVerticalTrack="true" > 

     <ImageView 
      android:contentDescription="Specs" 
      android:adjustViewBounds="true" 
      android:id="@+id/imageScroll" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:scrollbars="vertical" 
      android:src="@drawable/rules" > 
     </ImageView> 
     </ScrollView> 

しかし、それはそれは良いレイアウトで示し動作しませんが、私は活動が

<RelativeLayout 
     android:id="@+id/linear1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="#172027" 
     android:orientation="horizontal" 
     android:visibility="visible"> 
     <ImageView 
      android:layout_width="@dimen/logoSize" 
      android:layout_height="@dimen/logoSizeH" 
      android:src="@drawable/logocopy" 
      android:layout_marginTop="25dp" 
      android:id="@+id/logoimage" 
      android:layout_marginLeft="20dp"/> 
     <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="wrap_content" 
      android:layout_below="@+id/logoimage" 
      android:background="@drawable/rules" 
      android:scrollbarAlwaysDrawVerticalTrack="true" > 
      <LinearLayout 
       android:layout_width="match_parent" 
       android:layout_height="match_parent"> 
       <ImageView 
        android:adjustViewBounds="true" 
        android:id="@+id/imageScroll" 
        android:layout_width="match_parent" 
        android:fillViewport="true" 
        android:layout_height="wrap_content" 
        android:scrollbars="vertical" 
        android:src="@drawable/rules" 
        android:scaleType="centerCrop" > 
       </ImageView> 

      </LinearLayout> 
     </ScrollView> 




     <RelativeLayout 
      android:id="@+id/humburger_main1" 
      android:layout_width="wrap_content" 
      android:layout_height="50dp" 
      android:layout_marginTop="30dp" 
      android:layout_marginRight="20dp" 
      android:layout_alignParentEnd="true" 
      android:gravity="center" 
      android:orientation="vertical" 
      android:layout_alignParentRight="true"> 

      <LinearLayout 
       android:id="@+id/humburger_31" 
       android:layout_width="30dp" 
       android:layout_height="5dp" 
       android:background="#ffff" 
       android:orientation="horizontal" /> 


      <LinearLayout 
       android:id="@+id/humburger_11" 
       android:layout_width="30dp" 
       android:layout_height="5dp" 
       android:layout_below="@+id/humburger_31" 
       android:layout_marginTop="10dp" 
       android:background="#ffff" 
       android:orientation="horizontal" /> 

      <LinearLayout 
       android:id="@+id/humburger_21" 
       android:layout_width="30dp" 
       android:layout_height="5dp" 
       android:layout_below="@+id/humburger_31" 
       android:layout_marginTop="10dp" 
       android:background="#ffff" 
       android:orientation="horizontal" /> 

      <LinearLayout 
       android:id="@+id/humburger_41" 
       android:layout_width="30dp" 
       android:layout_height="5dp" 
       android:layout_below="@+id/humburger_21" 
       android:layout_marginTop="10dp" 
       android:background="#ffff" 
       android:orientation="horizontal" /> 

      <LinearLayout 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 
     </RelativeLayout> 
     <LinearLayout 
      android:id="@+id/RecyclerView1" 
      android:layout_width="20dp" 
      android:layout_height="match_parent" 
      android:layout_alignParentRight="true" 
      android:background="#00ff0000" 
      android:orientation="horizontal" 
      android:scrollbars="vertical"> 

     </LinearLayout> 

    </RelativeLayout> 

ここではXMLコードがあります起動したときに、それは表示されませんしましたそれは活動していることであるが、スクロール画像が

+0

水平スクロールもしませんか? – tahsinRupam

答えて

0

(このコードは「IMG」と呼ばれるImageViewのを含むバックエンド上のXMLファイルを持っている活動、からなる)、これを試してくださいが表示されませんこのような ImageViewコード変更する
0

試してみてください。

<ImageView 
     android:contentDescription="Specs" 
     android:adjustViewBounds="true" 
     android:id="@+id/imageScroll" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:scrollbars="vertical" 
     android:src="@drawable/rules" 
     android:scaleType="fitXY" > 

アップデート1

を代わりに多分あなたはこのような何か試すことができます。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_below="@+id/logoimage"> 

    <LinearLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="0dp"> 

     <ImageView 
      android:contentDescription="Specs" 
      android:adjustViewBounds="true" 
      android:id="@+id/imageScroll" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:src="@drawable/rules" 
      android:layout_marginTop="0dp" > 
     </ImageView> 
    </LinearLayout> 
</ScrollView> 

を更新2

私はそれが動作するかわからないんだけど、これ以下に、あなたのレイアウトを変更しよう:

<RelativeLayout 
    android:id="@+id/linear1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="#172027" 
    android:visibility="visible"> 
    <ImageView 
     android:layout_width="@dimen/logoSize" 
     android:layout_height="@dimen/logoSizeH" 
     android:src="@drawable/logocopy" 
     android:layout_marginTop="25dp" 
     android:layout_alignParentTop="true" 
     android:id="@+id/logoimage" 
     android:layout_marginLeft="20dp"/> 
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/scrollview" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_below="@id/logoimage" 
     android:background="@drawable/rules" 
     android:scrollbarAlwaysDrawVerticalTrack="true" > 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 
      <ImageView 
       android:adjustViewBounds="true" 
       android:id="@+id/imageScroll" 
       android:layout_width="match_parent" 
       android:fillViewport="true" 
       android:layout_height="wrap_content" 
       android:scrollbars="vertical" 
       android:src="@drawable/rules" 
       android:scaleType="center" > 
      </ImageView> 

     </LinearLayout> 
    </ScrollView> 

    <RelativeLayout 
     android:id="@+id/humburger_main1" 
     android:layout_width="wrap_content" 
     android:layout_height="50dp" 
     android:layout_marginTop="30dp" 
     android:layout_marginRight="20dp" 
     android:layout_alignParentEnd="true" 
     android:gravity="center" 
     android:layout_alignParentRight="true" 
     android:layout_toRightOf="@id/scrollview"> 

     <LinearLayout 
      android:id="@+id/humburger_31" 
      android:layout_width="30dp" 
      android:layout_height="5dp" 
      android:background="#ffff" 
      android:orientation="horizontal" /> 

     <LinearLayout 
      android:id="@+id/humburger_11" 
      android:layout_width="30dp" 
      android:layout_height="5dp" 
      android:layout_below="@+id/humburger_31" 
      android:layout_marginTop="10dp" 
      android:background="#ffff" 
      android:orientation="horizontal" /> 

     <LinearLayout 
      android:id="@+id/humburger_21" 
      android:layout_width="30dp" 
      android:layout_height="5dp" 
      android:layout_below="@+id/humburger_31" 
      android:layout_marginTop="10dp" 
      android:background="#ffff" 
      android:orientation="horizontal" /> 

     <LinearLayout 
      android:id="@+id/humburger_41" 
      android:layout_width="30dp" 
      android:layout_height="5dp" 
      android:layout_below="@+id/humburger_21" 
      android:layout_marginTop="10dp" 
      android:background="#ffff" 
      android:orientation="horizontal" /> 

     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 
    </RelativeLayout> 
    <LinearLayout 
     android:id="@+id/RecyclerView1" 
     android:layout_width="20dp" 
     android:layout_height="match_parent" 
     android:layout_alignParentRight="true" 
     android_layout_toRightOf="@id/scrollview" 
     android:background="#00ff0000" 
     android:orientation="horizontal" 
     android:scrollbars="vertical"> 

    </LinearLayout> 

</RelativeLayout> 
+0

これは動作しません... – Vladimir

+0

ScrollViewのandroid:layout_heightプロパティをmatch_parentに変更するとどうなりますか? –

+0

レイアウトXMLファイル全体のコードを投稿できますか?プレビューの –

0

申し訳ありませんが、uがあなたの活動にこのレイアウトを設定したのですか? あなたの代わりにこの単純なレイアウトを使用してください。

<ScrollView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"> 
      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

</ScrollView> 
+0

私は活動に設定しました – Vladimir

+0

あなたの活動コードを送ってください。私の答えと他の人が心配しなければ、私は心配する限りxmlに何も間違いがないと思う。 –

+0

setContentView(R.layout.activity_savefty);私はコンテンツビューを設定して何をしたいですか? – Vladimir

0

私はこの問題の限りを検索し、最終的にこのコードを見つける:

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/img" 
    android:scaleType="center" 
    android:background="#fff" 
    android:src="@drawable/picName"/> 

もこの

@Override 
public void onCreate(Bundle savedInstanceState) 
{ 
    super.onCreate(savedInstanceState); 

    setContentView(R.layout.xml_name_layout); 

    final ImageView switcherView = (ImageView)this.findViewById(R.id.img); 

    switcherView.setOnTouchListener(new View.OnTouchListener() 
    { 

     public boolean onTouch(View arg0, MotionEvent event) 
     { 

      float curX, curY; 

      switch (event.getAction()) 
      { 

       case MotionEvent.ACTION_DOWN: 
        mx = event.getX(); 
        my = event.getY(); 
        break; 
       case MotionEvent.ACTION_MOVE: 
        curX = event.getX(); 
        curY = event.getY(); 
        switcherView.scrollBy((int) (mx - curX), (int) (my - curY)); 
        mx = curX; 
        my = curY; 
        break; 
       case MotionEvent.ACTION_UP: 
        curX = event.getX(); 
        curY = event.getY(); 
        switcherView.scrollBy((int) (mx - curX), (int) (my - curY)); 
        break; 
      } 

      return true; 
     } 
    }); 
} 

が私のために完璧に仕事をしてくれた...水平&垂直方向のスクロールを含まれています(有効)

関連する問題