diff options
Diffstat (limited to 'packages/SystemUI')
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/recent/RecentsHorizontalScrollView.java | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recent/RecentsHorizontalScrollView.java b/packages/SystemUI/src/com/android/systemui/recent/RecentsHorizontalScrollView.java index 85cde7c..5c1bbf0 100644 --- a/packages/SystemUI/src/com/android/systemui/recent/RecentsHorizontalScrollView.java +++ b/packages/SystemUI/src/com/android/systemui/recent/RecentsHorizontalScrollView.java @@ -26,6 +26,7 @@ import android.util.Log; import android.view.MotionEvent; import android.view.View; import android.view.ViewConfiguration; +import android.view.View.OnClickListener; import android.widget.HorizontalScrollView; import android.widget.LinearLayout; @@ -75,13 +76,23 @@ public class RecentsHorizontalScrollView extends HorizontalScrollView mPerformanceHelper.addViewCallback(view); } - final View thumbnail = view.findViewById(R.id.app_thumbnail); - // thumbnail is set to clickable in the layout file - thumbnail.setOnClickListener(new OnClickListener() { + view.setOnClickListener(new OnClickListener() { public void onClick(View v) { - mCallback.handleOnClick(view); + mCallback.dismiss(); } }); + + OnClickListener launchAppListener = new OnClickListener() { + public void onClick(View v) { + mCallback.handleOnClick(view); + } + }; + final View thumbnail = view.findViewById(R.id.app_thumbnail); + thumbnail.setClickable(true); + thumbnail.setOnClickListener(launchAppListener); + final View appTitle = view.findViewById(R.id.app_label); + appTitle.setClickable(true); + appTitle.setOnClickListener(launchAppListener); mLinearLayout.addView(view); } // Scroll to end after layout. |
