私は縦に大きな画像を持っています、私はそれをスクロール可能にしたいです。 私は、このようにそれを作った大きな画像縦スクロール
<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コードがあります起動したときに、それは表示されませんしましたそれは活動していることであるが、スクロール画像が
水平スクロールもしませんか? – tahsinRupam