Add: tasker plugin support, injectable webview
This commit is contained in:
@@ -78,7 +78,6 @@ public class LevelBeamView extends View {
|
||||
|
||||
@Override
|
||||
protected void onDraw(Canvas canvas) {
|
||||
Log.i(TAG, "onDraw");
|
||||
super.onDraw(canvas);
|
||||
for (int lvl = 0; lvl <= mLevel; lvl++) {
|
||||
float LINE_X = mPaddingLeft + lvl * mLinesWidth;
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.stardust.widget;
|
||||
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.view.View;
|
||||
|
||||
/**
|
||||
* Created by Stardust on 2017/3/27.
|
||||
*/
|
||||
|
||||
public interface OnItemClickListener {
|
||||
|
||||
void onItemClick(RecyclerView parent, View item, int position);
|
||||
}
|
||||
Reference in New Issue
Block a user