Skip to content

Instantly share code, notes, and snippets.

package com.chamoapp.haegu;
...
public class CustomNumberPicker extends NumberPicker {
public CustomNumberPicker(Context context, AttributeSet attrs) {
super(context, attrs);
NumberPicker numberpicker = null;
@bubblek
bubblek / activity_step1_detail.xml
Created November 9, 2015 13:55
activity_step1_detail.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="horizontal">
<include
layout="@layout/fragment_step1_detail1"
android:layout_width="0dp"
@bubblek
bubblek / TimelineContents.java
Last active November 9, 2015 13:06
탐나로 Step3 Timeline CardView 구현
package com.chamodev.tamnaro.model;
public class TimelineContents {
private String title, time, content, imgsrc;
private int like, comment;
public TimelineContents() {
}
public String getTitle() {