We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c0a31 commit 905d0efCopy full SHA for 905d0ef
activitytaskview/src/main/java/cc/rome753/activitytask/view/FragmentTaskView.java
@@ -1,6 +1,7 @@
1
package cc.rome753.activitytask.view;
2
3
import android.content.Context;
4
+import android.graphics.Color;
5
import android.util.AttributeSet;
6
import android.widget.LinearLayout;
7
@@ -28,6 +29,7 @@ public FragmentTaskView(Context context) {
28
29
public FragmentTaskView(Context context, AttributeSet attrs) {
30
super(context, attrs);
31
setOrientation(VERTICAL);
32
+ setBackgroundColor(Color.parseColor("#333333"));
33
mLifecycleObservable = new LifecycleObservable();
34
}
35
0 commit comments