auto import from //depot/cupcake/@132589
This commit is contained in:
@@ -176,11 +176,11 @@ public class StatusBarService extends IStatusBar.Stub
|
||||
WindowManager.LayoutParams mExpandedParams;
|
||||
ScrollView mScrollView;
|
||||
View mNotificationLinearLayout;
|
||||
TextView mOngoingTitle;
|
||||
View mOngoingTitle;
|
||||
LinearLayout mOngoingItems;
|
||||
TextView mLatestTitle;
|
||||
View mLatestTitle;
|
||||
LinearLayout mLatestItems;
|
||||
TextView mNoNotificationsTitle;
|
||||
View mNoNotificationsTitle;
|
||||
TextView mSpnLabel;
|
||||
TextView mPlmnLabel;
|
||||
TextView mClearButton;
|
||||
@@ -270,11 +270,11 @@ public class StatusBarService extends IStatusBar.Stub
|
||||
|
||||
mExpandedDialog = new ExpandedDialog(context);
|
||||
mExpandedView = expanded;
|
||||
mOngoingTitle = (TextView)expanded.findViewById(R.id.ongoingTitle);
|
||||
mOngoingTitle = expanded.findViewById(R.id.ongoingTitle);
|
||||
mOngoingItems = (LinearLayout)expanded.findViewById(R.id.ongoingItems);
|
||||
mLatestTitle = (TextView)expanded.findViewById(R.id.latestTitle);
|
||||
mLatestTitle = expanded.findViewById(R.id.latestTitle);
|
||||
mLatestItems = (LinearLayout)expanded.findViewById(R.id.latestItems);
|
||||
mNoNotificationsTitle = (TextView)expanded.findViewById(R.id.noNotificationsTitle);
|
||||
mNoNotificationsTitle = expanded.findViewById(R.id.noNotificationsTitle);
|
||||
mClearButton = (TextView)expanded.findViewById(R.id.clear_all_button);
|
||||
mClearButton.setOnClickListener(mClearButtonListener);
|
||||
mSpnLabel = (TextView)expanded.findViewById(R.id.spnLabel);
|
||||
@@ -1705,9 +1705,6 @@ public class StatusBarService extends IStatusBar.Stub
|
||||
*/
|
||||
void updateResources() {
|
||||
mClearButton.setText(mContext.getText(R.string.status_bar_clear_all_button));
|
||||
mOngoingTitle.setText(mContext.getText(R.string.status_bar_ongoing_events_title));
|
||||
mLatestTitle.setText(mContext.getText(R.string.status_bar_latest_events_title));
|
||||
mNoNotificationsTitle.setText(mContext.getText(R.string.status_bar_no_notifications_title));
|
||||
Log.d(TAG, "updateResources");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user