android 如何增加控件(ToggleButton)的触摸区域?

drkbr07n  于 2023-06-27  发布在  Android
关注(0)|答案(7)|浏览(142)

我有一个ToggleButton。我想有更多的地方点击这个按钮。如果我加上layout_widthlayout_height等等。图像看起来不好。我也试过使用android:padding,但它没有帮助我。
这是为了方便用户。

eufgjt7s

eufgjt7s1#

简单的解决方案:如果您有按钮的图像,然后在其周围创建透明区域(即用于触摸区域)。
灰色区域可以是透明的以增加触摸面积。

或使用TouchDelegate

mitkmikd

mitkmikd2#

您还可以通过设置touch delegates来增加触摸面积Android开发者培训博客文章

  1. public class MainActivity extends Activity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_main);
  6. // Get the parent view
  7. View parentView = findViewById(R.id.parent_layout);
  8. parentView.post(new Runnable() {
  9. // Post in the parent's message queue to make sure the parent
  10. // lays out its children before you call getHitRect()
  11. @Override
  12. public void run() {
  13. // The bounds for the delegate view (an ImageButton
  14. // in this example)
  15. Rect delegateArea = new Rect();
  16. ImageButton myButton = (ImageButton) findViewById(R.id.button);
  17. myButton.setEnabled(true);
  18. myButton.setOnClickListener(new View.OnClickListener() {
  19. @Override
  20. public void onClick(View view) {
  21. Toast.makeText(MainActivity.this,
  22. "Touch occurred within ImageButton touch region.",
  23. Toast.LENGTH_SHORT).show();
  24. }
  25. });
  26. // The hit rectangle for the ImageButton
  27. myButton.getHitRect(delegateArea);
  28. // Extend the touch area of the ImageButton beyond its bounds
  29. // on the right and bottom.
  30. delegateArea.right += 100;
  31. delegateArea.bottom += 100;
  32. // Instantiate a TouchDelegate.
  33. // "delegateArea" is the bounds in local coordinates of
  34. // the containing view to be mapped to the delegate view.
  35. // "myButton" is the child view that should receive motion
  36. // events.
  37. TouchDelegate touchDelegate = new TouchDelegate(delegateArea,
  38. myButton);
  39. // Sets the TouchDelegate on the parent view, such that touches
  40. // within the touch delegate bounds are routed to the child.
  41. if (View.class.isInstance(myButton.getParent())) {
  42. ((View) myButton.getParent()).setTouchDelegate(touchDelegate);
  43. }
  44. }
  45. });
  46. }
  47. }
展开查看全部
smdncfj3

smdncfj33#

使用TouchDelegate为您的ToggleButton作为ammar26评论你。
或者
试试这个:
创建一个父布局,如LinearLayoutRelativeLayout,覆盖ToggleButton。现在将边距添加到父布局。
现在,在点击父布局时,对切换按钮执行操作。
希望它能帮助你增加触摸面积为您的看法。
快乐编程

mlnl4t2r

mlnl4t2r4#

而不是把触摸事件在按钮把它放在布局containg唯一的按钮..和固定的大小布局如你所愿

fcg9iug3

fcg9iug35#

增加android:padding的值:

  1. <SeekBar android:id="@+id/seek" android:layout_width="0dip"
  2. android:layout_height="wrap_content" android:layout_weight="1"
  3. android:paddingTop="5dp" android:paddingBottom="5dp"
  4. android:progressDrawable="@drawable/green_scrubber_progress_horizontal_holo_ligh‌​t"
  5. android:thumb="@drawable/thumb" />
u5i3ibmn

u5i3ibmn6#

parent layout中取出margin(代替padding),然后在Layout上执行操作

  1. mLayout.setonTouchListener(View.onTouchListener{
  2. // here your working code
  3. });
56lgkhnf

56lgkhnf7#

可以使用触摸代理来增加触摸区域。
写一个像这样的通用函数:

  1. fun View.increaseHitAreaForViews(vararg viewsAndDetail: Pair<View, Int>) {
  2. val touchDelegateComposite = TouchDelegateComposite(this)
  3. post {
  4. viewsAndDetail.forEach { pair ->
  5. val rect = Rect()
  6. val view = pair.first
  7. view.getHitRect(rect)
  8. rect.top -= pair.second
  9. rect.left -= pair.second
  10. rect.bottom += view.measuredHeight + pair.second
  11. rect.right += view.measuredWidth + pair.second
  12. touchDelegateComposite.addDelegate(TouchDelegate(rect, view))
  13. }
  14. touchDelegate = touchDelegateComposite
  15. }
  16. }

并在任何你想增加命中面积的地方调用它。

  1. view.increaseHitAreaForViews(
  2. Pair(btn, 40)
  3. )

其中view是父布局,btn是要增加触摸面积的控件。您也可以根据需要调整值40

展开查看全部

相关问题