我需要在我的android應用程序中做這樣的圖像,我不知道哪個是最好的方式來做到這一點。Seekbar或水平LinearLayout?
值將介於0和150之間,當然數字必須水平滾動(蒙版是靜態的)。
我有面具圖像的線條,我想我應該把數字放在一個水平的LinearLayout編程完整的TextViews。我知道TextViews應該具有的確切邊距(在dp中)。
滾動後,TextViews必須停在較大的行,我必須能夠獲得中心的數字(當前選定的值)。
你會怎麼做到這一點?
SOLUTION:
使用HorizontalPicker library它已經輕鬆達到我想要的。
佈局將如下所示。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
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">
<com.wefika.horizontalpicker.HorizontalPicker
android:id="@+id/picker"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:textSize="@integer/picker_text_size"
app:sideItems="3"
android:layout_centerVertical="true"
android:marqueeRepeatLimit="-1"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/mask_image"
android:layout_centerVertical="true"
android:clickable="false"
android:scaleType="centerCrop"/>
https://github.com/rtugeek/ColorSeekBar –