Merge "Allow scrolling in landscape" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
acf1151d11
@@ -776,6 +776,10 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
|
||||
}
|
||||
}
|
||||
|
||||
boolean inLandscape() {
|
||||
return mOrientation == Configuration.ORIENTATION_LANDSCAPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a listener to be notified of bubble expand events.
|
||||
*/
|
||||
|
||||
@@ -70,6 +70,9 @@ public class BubbleOverflowActivity extends Activity {
|
||||
}
|
||||
@Override
|
||||
public boolean canScrollVertically() {
|
||||
if (mBubbleController.inLandscape()) {
|
||||
return super.canScrollVertically();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user