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
package com.chamoapp.haegu; | |
... | |
public class CustomNumberPicker extends NumberPicker { | |
public CustomNumberPicker(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
NumberPicker numberpicker = null; | |
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
<?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" |
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
package com.chamodev.tamnaro.model; | |
public class TimelineContents { | |
private String title, time, content, imgsrc; | |
private int like, comment; | |
public TimelineContents() { | |
} | |
public String getTitle() { |