Skip to content

Instantly share code, notes, and snippets.

View KoMinkyu's full-sized avatar
🐢
working

KoMinkyu KoMinkyu

🐢
working
View GitHub Profile
@KoMinkyu
KoMinkyu / 경하누나 2월 6일자 숙제
Last active August 29, 2015 13:56
아이디 비밀번호 입력창이 없어서 만들었음
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/ee"
tools:context=".MainActivity$PlaceholderFragment">
<EditText
android:layout_width="200dp"
android:layout_height="43dp"
android:layout_marginTop="350dp"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#333333"
android:orientation="vertical"
tools:context=".LoadingActivity">
<TextView
@KoMinkyu
KoMinkyu / SimplePullToRefreshTwoWayView.java
Last active August 28, 2015 04:57
TwoWayView PullToRefresh simple implementation
package com.handmark.pulltorefresh.library;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import org.lucasr.twowayview.widget.TwoWayView;
public class SimplePullToRefreshTwoWayView extends PullToRefreshBase<TwoWayView> {
public SimplePullToRefreshTwoWayView(Context context) {