私はアンドロイド開発にかなり慣れていないので、非常に単純なプロセスかもしれないことに完全に困惑しています。
ImageViews
内に一連の(ボタンとして機能する)を含む水平スクロールビューを設定しましたlinearlayout
。ただし、エミュレーターでプロジェクトを実行すると、最初の画像のみimageview
が表示され、他の画像ビューを水平方向にスクロールできません
解決策を見つけるためにネット全体を広範囲に検索しましたが、運がありません。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/cookanegg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:src="@drawable/cookanegg"
android:text="@string/button_1"
android:textSize="25dp"
android:textStyle="bold" />
<ImageView
android:id="@+id/cheffytips"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/button_2"
android:textSize="25dp"
android:textStyle="@drawable/chefstips" />
<ImageView
android:id="@+id/settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/button_3"
android:textSize="25dp"
android:textStyle="@drawable/settings" />
</LinearLayout>
</HorizontalScrollView>
私は正確に何が欠けていますか?
どんな助けでも大歓迎です!!
どうもありがとう、
ハリソン