Skip to content

Instantly share code, notes, and snippets.

@hvisser
hvisser / gist:4504794
Created January 10, 2013 19:01
Android style lint check
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style android:name="MyStyle" parent="android:Theme.Light">
<!-- if the minSdk level is less then 11, then this should be a lint error, since android:actionBarStyle is since API 11,
unless this is in a -v11 (or better) resource folder -->
<item name="android:actionBarStyle">...</item>
</style>
</resources>
@hvisser
hvisser / TestListFragment.java
Created October 30, 2012 08:38
Fixed TestListFragment that won't crash on hitting the back key
package com.neenbedankt.listfragmentbug;
import android.annotation.TargetApi;
import android.app.ListFragment;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.TextView;
public class TestListFragment extends ListFragment {
@hvisser
hvisser / TestListFragment.java
Created October 30, 2012 08:23
ListFragment with custom header
package com.neenbedankt.listfragmentbug;
import android.annotation.TargetApi;
import android.app.ListFragment;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.TextView;
public class TestListFragment extends ListFragment {