Skip to content

Commit

Permalink
新增预览和使用方法
Browse files Browse the repository at this point in the history
  • Loading branch information
HuXiaobai committed Oct 31, 2018
1 parent f50bb1c commit dcc1ff3
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,24 @@ dependencies {
<attr name="sure_drawable_padding" format="dimension" />

//点击事件回调
public interface OnTitleViewClickListener {
void onBackClick(@NonNull View view);

void onSureClick(@NonNull View view);
interface OnItemClickListener {
fun onItemClick(view: View)
}

public interface OnBackViewClickListener {
void onBackClick(@NonNull View view);
}

public interface OnSureViewClickListener {
void onSureClick(@NonNull View view);
}

interface OnTitleItemClickListener {
fun onBackClick(v: View)
fun onSureClick(v: View)
}

interface OnTitleBackClickListener {
fun onBackClick(view: View)
}

interface OnTitleSureClickListener {
fun onSureClick(view: View)
}

```

0 comments on commit dcc1ff3

Please sign in to comment.