図1に示すようなカテゴリがありHorizontalScrollView
ます。カテゴリのスクロールに使用しましたが、スクロールするとスクロールの進行状況がテキストビューの下部に表示されます(画像に表示)。実際にはこれを表示したくなく、2つのボタンを配置したい左と右のスクロール用 (図 2 に表示)。私はたくさん検索しましたが、これを行っていません。アイデアがあれば教えてください。図-1
図-2
図1に示すようなカテゴリがありHorizontalScrollView
ます。カテゴリのスクロールに使用しましたが、スクロールするとスクロールの進行状況がテキストビューの下部に表示されます(画像に表示)。実際にはこれを表示したくなく、2つのボタンを配置したい左と右のスクロール用 (図 2 に表示)。私はたくさん検索しましたが、これを行っていません。アイデアがあれば教えてください。図-1
図-2
スクロールバーは、HorizontalScrollView定義に書き込むだけで削除できます。
android:scrollbars="none"
この属性android:scrollbars="none"
を試して、機能するかどうかを確認してください。=)
このプロパティをHorizontalScrollViewに配置します
android:scrollbars="none" in your xml file for disable scrollbar as picture 1.
<HorizontalScrollView android:id="@+id/horizontalScroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none" >
写真2の解決策については、次のxmlを試してください。
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent" >
<ImageView android:src="@drawable/ic_launcher"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"/>
<ImageView android:src="@drawable/ic_launcher"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"/>
<HorizontalScrollView android:id="@+id/horizontalScroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:fadingEdgeLength="20dp">
</HorizontalScrollView>
</RelativeLayout>
このリンクを確認してください。