Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| public class BaseActivity extends AppCompatActivity | |
| { | |
| public DrawerLayout drawerLayout; | |
| public ListView drawerList; | |
| private ActionBarDrawerToggle drawerToggle; | |
| protected void onCreate(Bundle savedInstanceState) | |
| { | |
| // R.id.drawer_layout should be in every activity with exactly the same id. | |
| drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <?php | |
| $config["full_tag_open"] = '<ul class="pagination">'; | |
| $config["full_tag_close"] = '</ul>'; | |
| $config["first_link"] = "«"; | |
| $config["first_tag_open"] = "<li>"; | |
| $config["first_tag_close"] = "</li>"; | |
| $config["last_link"] = "»"; | |
| $config["last_tag_open"] = "<li>"; |