14 lines
316 B
Java
14 lines
316 B
Java
package com.android.server.status;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.widget.LinearLayout;
|
|
|
|
|
|
public class NotificationLinearLayout extends LinearLayout {
|
|
public NotificationLinearLayout(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
}
|
|
|