View gist:1631479
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
$('#mw-sopaOverlay').remove(); | |
$('body').children().show(); |
View gist:1850117
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
02-17 11:24:15.650: E/AndroidRuntime(3382): FATAL EXCEPTION: main | |
02-17 11:24:15.650: E/AndroidRuntime(3382): java.lang.Error: Unresolved compilation problems: | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable | |
02-17 11:24:15.650: E/AndroidRuntime(3382): R cannot be resolved to a variable |
View gist:1986112
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
ExpandableListAdapter adapter = expandableListView.getExpandableListAdapter(); | |
int groupCount = adapter.getGroupCount(); | |
for(int i=0; i < groupCount; i++) { | |
int childCount = adapter.getChildrenCount(i); | |
View groupView = adapter.getGroupView(i, false, null, expandableListView); | |
CheckBox cbGroupSelected = (CheckBox) groupView.findViewById(R.id.cb_group_selected); | |
cbGroupSelected.setOnCheckedChangeListener(this); | |
for(int j=0; j < childCount; j++) { |
View gist:3026624
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
/* | |
* 例1 | |
*/ | |
if(hoge != null) { | |
hogeList.add(hoge); | |
} | |
// 例1の全然アリな例① | |
if(hoge != null) | |
hogeList.add(hoge); |
View gist:3058409
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
class Sample { | |
public static void main(String[] args) { | |
bar(SuperHoge.class); | |
bar(Hoge.class); | |
bar(SubHoge.class); // ←これの話 | |
} |
View gist:3103309
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
StringWriter sw = new StringWriter(); | |
AboutMeGen.encodeNullToNull(sw, aboutMe); | |
String json = sw.toString(); |
View MainActivity.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
public class MainActivity extends Activity { | |
private static final int REQUEST_CODE_GALLERY = 0; | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
Button btnCallGallary = new Button(this); | |
btnCallGallary.setText("ギャラリーを開く"); |
View gist:3247159
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
/* | |
* http://d.hatena.ne.jp/gabuchan/20101125/1290681748 の前半を参考にして作成 | |
* (Xperia 2.1のdata.getData()の事例は例外と判断して切りました) | |
*/ | |
Uri mCameraUri; | |
/** | |
* カメラ呼び出し部分 | |
*/ |
View gist:3293045
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
public class FizzBuzz { | |
public static String eval(int n) { | |
return ""+((n%3==0)?"fizz"+((n%5==0)?"buzz":""):(n%5==0)?"buzz":n); | |
} | |
} | |
public class FizzBuzzTest { |
View HelloWorldActivity.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
class HelloWorldActivity extends Activity { | |
@Override | |
void onCreate(Bundle savedInstanceState) { | |
super(savedInstanceState); | |
setContentView(R.layout.activity_helloworld); | |
TextView tvHelloWorld = (TextView)findViewById(R.id.tv_helloworld); | |
// 文字書き換えたりする | |
} | |
} |
OlderNewer