OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:buttondispatcher
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarInflaterView.java
67
private SparseArray<
ButtonDispatcher
> mButtonDispatchers;
150
public void setButtonDispatchers(SparseArray<
ButtonDispatcher
> buttonDisatchers) {
177
private void initiallyFill(
ButtonDispatcher
buttonDispatcher
) {
178
addAll(
buttonDispatcher
, (ViewGroup) mRot0.findViewById(R.id.ends_group));
179
addAll(
buttonDispatcher
, (ViewGroup) mRot0.findViewById(R.id.center_group));
180
addAll(
buttonDispatcher
, (ViewGroup) mRot90.findViewById(R.id.ends_group));
181
addAll(
buttonDispatcher
, (ViewGroup) mRot90.findViewById(R.id.center_group));
184
private void addAll(
ButtonDispatcher
buttonDispatcher
, ViewGroup parent)
[
all
...]
NavigationBarView.java
100
private final SparseArray<
ButtonDispatcher
> mButtonDisatchers = new SparseArray<>();
136
ButtonDispatcher
backButton = getBackButton();
199
mButtonDisatchers.put(R.id.back, new
ButtonDispatcher
(R.id.back));
200
mButtonDisatchers.put(R.id.home, new
ButtonDispatcher
(R.id.home));
201
mButtonDisatchers.put(R.id.recent_apps, new
ButtonDispatcher
(R.id.recent_apps));
202
mButtonDisatchers.put(R.id.menu, new
ButtonDispatcher
(R.id.menu));
203
mButtonDisatchers.put(R.id.ime_switcher, new
ButtonDispatcher
(R.id.ime_switcher));
249
public
ButtonDispatcher
getRecentsButton() {
253
public
ButtonDispatcher
getMenuButton() {
257
public
ButtonDispatcher
getBackButton()
[
all
...]
ButtonDispatcher.java
28
public class
ButtonDispatcher
{
44
public
ButtonDispatcher
(int id) {
PhoneStatusBar.java
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java
47
import com.android.systemui.statusbar.phone.
ButtonDispatcher
;
52
public class KeyButtonView extends ImageView implements
ButtonDispatcher
.ButtonInterface {
Completed in 4596 milliseconds