自定义搜索栏无法正常工作
Custom seek bar don't work correctly
朋友们,请帮帮我。
我在项目中有一个自定义的 SeekBar。
它显示不正确。
http://take.ms/NgHW9
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@mipmap/ballance_bg"
android:gravity="center"
android:padding="2dp">
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:clickable="false"
android:focusable="false"
android:max="1"
android:maxHeight="5dp"
android:minHeight="1dp"
android:paddingLeft="1dp"
android:paddingRight="1dp"
android:progress="0"
android:progressDrawable="@drawable/seekbar_progress"
android:saveEnabled="true"
android:thumb="@mipmap/point_icon"
android:thumbOffset="0dp" />
</LinearLayout>
有自定义可绘制资源 - seekbar_progress
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/like_line_2"
android:dither="true"/>
</item>
<item
android:id="@android:id/progress"
android:drawable="@drawable/red_seekbar_progress" /></layer-list>
like_line_2 是 9.patch 图片
有自定义可绘制资源 - red_seekbar_progress
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<clip>
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/dislike_line_2"
android:dither="true"
/>
</clip>
</item></layer-list>
dislike_line_2是9.patch图片
这段代码填充SeekBar。
seek_1 = (SeekBar) view.findViewById(R.id.seekBar);
seek_1.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
return true;
}
});
int sum = Integer.parseInt(products.get(0).getPositive_count()) + Integer.parseInt(products.get(0).getNegative_count());
seek_1.setMax(sum);
seek_1.setProgress(Integer.parseInt(products.get(0).getNegative_count()));
这个错误出现在不同的SeekBars
我自己找到了解决方案。这就是错误所在。
<item
android:id="@android:id/progress"
android:drawable="@drawable/red_seekbar_progress" />
尽量不要在另一个 XML 项中使用 for XML。
正确版本:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"><item android:id="@android:id/background">
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/like_line_2"
android:dither="true"/>
</item>
<item
android:id="@android:id/progress">
<clip>
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/dislike_line_2"
android:dither="true"/>
</clip>
</item>
</layer-list>
朋友们,请帮帮我。
我在项目中有一个自定义的 SeekBar。
它显示不正确。
http://take.ms/NgHW9
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@mipmap/ballance_bg"
android:gravity="center"
android:padding="2dp">
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:clickable="false"
android:focusable="false"
android:max="1"
android:maxHeight="5dp"
android:minHeight="1dp"
android:paddingLeft="1dp"
android:paddingRight="1dp"
android:progress="0"
android:progressDrawable="@drawable/seekbar_progress"
android:saveEnabled="true"
android:thumb="@mipmap/point_icon"
android:thumbOffset="0dp" />
</LinearLayout>
有自定义可绘制资源 - seekbar_progress
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/like_line_2"
android:dither="true"/>
</item>
<item
android:id="@android:id/progress"
android:drawable="@drawable/red_seekbar_progress" /></layer-list>
like_line_2 是 9.patch 图片
有自定义可绘制资源 - red_seekbar_progress
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<clip>
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/dislike_line_2"
android:dither="true"
/>
</clip>
</item></layer-list>
dislike_line_2是9.patch图片
这段代码填充SeekBar。
seek_1 = (SeekBar) view.findViewById(R.id.seekBar);
seek_1.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
return true;
}
});
int sum = Integer.parseInt(products.get(0).getPositive_count()) + Integer.parseInt(products.get(0).getNegative_count());
seek_1.setMax(sum);
seek_1.setProgress(Integer.parseInt(products.get(0).getNegative_count()));
这个错误出现在不同的SeekBars
我自己找到了解决方案。这就是错误所在。
<item
android:id="@android:id/progress"
android:drawable="@drawable/red_seekbar_progress" />
尽量不要在另一个 XML 项中使用 for XML。
正确版本:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"><item android:id="@android:id/background">
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/like_line_2"
android:dither="true"/>
</item>
<item
android:id="@android:id/progress">
<clip>
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/dislike_line_2"
android:dither="true"/>
</clip>
</item>
</layer-list>