You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple,easy dialog for android. Instead of using dialog/fragments, normal view will be shown as dialog. It's customizable and have 3 different content holder.
- Use BasicHolder as content holder, BasicHolder is basically a listview mockup implementation by using linearlayout, there is no scrollable feature in this view and this should be used if you have only a few items.
54
56
```java
55
-
setHolder(newListHolder())
57
+
setHolder(newBasicHolder())
56
58
```
57
59
58
60
- Use GridHolder if you want to use GridView for the dialog. You must set column number.
59
61
```java
60
62
setHolder(newGridHolder(COLUMN_NUMBER))
61
63
```
64
+
65
+
66
+
#### TODO
67
+
Check wiki
68
+
69
+
#### License
70
+
<pre>
71
+
Copyright 2014 Orhan Obut
72
+
73
+
Licensed under the Apache License, Version 2.0 (the "License");
74
+
you may not use this file except in compliance with the License.
75
+
You may obtain a copy of the License at
76
+
77
+
http://www.apache.org/licenses/LICENSE-2.0
78
+
79
+
Unless required by applicable law or agreed to in writing, software
80
+
distributed under the License is distributed on an "AS IS" BASIS,
81
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
82
+
See the License for the specific language governing permissions and
0 commit comments