-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
adapter/src/main/java/com/classichu/adapter/helper/ClassicEmptyViewHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.classichu.adapter.helper; | ||
|
||
import android.content.Context; | ||
import android.view.ViewGroup; | ||
|
||
import com.classichu.adapter.widget.ClassicEmptyView; | ||
|
||
/** | ||
* Created by louisgeek on 2017/3/10. | ||
*/ | ||
|
||
public class ClassicEmptyViewHelper { | ||
public static ClassicEmptyView getClassicEmptyView(Context context, ClassicEmptyView.OnEmptyViewClickListener onEmptyViewClickListener) { | ||
ClassicEmptyView classicEmptyView = new ClassicEmptyView(context); | ||
classicEmptyView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); | ||
classicEmptyView.setOnEmptyViewClickListener(onEmptyViewClickListener); | ||
return classicEmptyView; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters