Skip to content

Commit fa3fc8f

Browse files
author
yanfeiwang
committed
v1.0
1 parent b35053f commit fa3fc8f

33 files changed

+685
-0
lines changed

.classpath

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

.project

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>PullLayout</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>

AndroidManifest.xml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.bluemor.pulllayout"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="18" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="com.bluemor.pulllayout.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
</application>
26+
27+
</manifest>

ic_launcher-web.png

50.2 KB
Loading

libs/android-support-v4.jar

341 KB
Binary file not shown.

libs/nineoldandroids-2.4.0.jar

108 KB
Binary file not shown.

proguard-project.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To enable ProGuard in your project, edit project.properties
2+
# to define the proguard.config property as described in that file.
3+
#
4+
# Add project specific ProGuard rules here.
5+
# By default, the flags in this file are appended to flags specified
6+
# in ${sdk.dir}/tools/proguard/proguard-android.txt
7+
# You can edit the include path and order by changing the ProGuard
8+
# include property in project.properties.
9+
#
10+
# For more details, see
11+
# http://developer.android.com/guide/developing/tools/proguard.html
12+
13+
# Add any project specific keep options here:
14+
15+
# If your project uses WebView with JS, uncomment the following
16+
# and specify the fully qualified class name to the JavaScript interface
17+
# class:
18+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19+
# public *;
20+
#}

project.properties

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-19

res/drawable-hdpi/ic_launcher.png

7.48 KB
Loading

res/drawable-mdpi/ic_launcher.png

3.69 KB
Loading

res/drawable-xhdpi/clip.png

77.9 KB
Loading

res/drawable-xhdpi/clip2.png

67.5 KB
Loading

res/drawable-xhdpi/eye.png

10.8 KB
Loading

res/drawable-xhdpi/ic_launcher.png

12.2 KB
Loading
18.7 KB
Loading
579 Bytes
Loading
747 Bytes
Loading

res/drawable-xxhdpi/ic_launcher.png

24.2 KB
Loading

res/drawable/selector_bg.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
2+
<item android:drawable="@color/transgray" android:state_pressed="true"/>
3+
<item android:drawable="@android:color/transparent"/>
4+
</selector>

res/layout/activity_main.xml

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<com.bluemor.pulllayout.PullLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:layout_width="match_parent"
3+
android:layout_height="match_parent" >
4+
5+
<RelativeLayout
6+
android:layout_width="match_parent"
7+
android:layout_height="match_parent" >
8+
9+
<RelativeLayout
10+
android:id="@+id/rl_top"
11+
android:layout_width="match_parent"
12+
android:layout_height="wrap_content" >
13+
14+
<ImageView
15+
android:id="@+id/iv"
16+
android:layout_width="match_parent"
17+
android:layout_height="match_parent"
18+
android:scaleType="centerCrop"
19+
android:src="@drawable/weather_bg_rain" />
20+
21+
<com.bluemor.pulllayout.EyeView
22+
android:id="@+id/ev"
23+
android:layout_width="wrap_content"
24+
android:layout_height="wrap_content"
25+
android:layout_alignParentRight="true"
26+
android:layout_centerVertical="true"
27+
android:layout_marginRight="30dp"
28+
android:background="@drawable/selector_bg" >
29+
30+
<ImageView
31+
android:layout_width="match_parent"
32+
android:layout_height="wrap_content"
33+
android:scaleType="centerCrop"
34+
android:src="@drawable/eye" />
35+
</com.bluemor.pulllayout.EyeView>
36+
37+
<LinearLayout
38+
android:id="@+id/ll_weather"
39+
android:layout_width="wrap_content"
40+
android:layout_height="wrap_content"
41+
android:layout_alignParentBottom="true"
42+
android:layout_marginBottom="30dp"
43+
android:layout_marginLeft="30dp"
44+
android:orientation="horizontal" >
45+
46+
<TextView
47+
android:layout_width="wrap_content"
48+
android:layout_height="wrap_content"
49+
android:drawableTop="@drawable/weather_mostly_cloudy"
50+
android:gravity="center"
51+
android:text="10°~17°\r\n星期三"
52+
android:textColor="@android:color/white"
53+
android:textSize="12sp" />
54+
55+
<TextView
56+
android:layout_width="wrap_content"
57+
android:layout_height="wrap_content"
58+
android:layout_marginLeft="30dp"
59+
android:drawableTop="@drawable/weather_drizzle"
60+
android:gravity="center"
61+
android:text="11°~18°\r\n星期四"
62+
android:textColor="@android:color/white"
63+
android:textSize="12sp" />
64+
</LinearLayout>
65+
</RelativeLayout>
66+
67+
<FrameLayout
68+
android:id="@+id/fl_bottom"
69+
android:layout_width="match_parent"
70+
android:layout_height="match_parent"
71+
android:layout_below="@id/rl_top"
72+
android:background="#F4F4F4" >
73+
74+
<LinearLayout
75+
android:id="@+id/ll_content"
76+
android:layout_width="match_parent"
77+
android:layout_height="wrap_content"
78+
android:orientation="vertical"
79+
android:paddingBottom="50dp"
80+
android:paddingTop="10dp" >
81+
82+
<ImageView
83+
android:layout_width="match_parent"
84+
android:layout_height="wrap_content"
85+
android:src="@drawable/clip" />
86+
87+
<ImageView
88+
android:layout_width="match_parent"
89+
android:layout_height="wrap_content"
90+
android:src="@drawable/clip2" />
91+
92+
<ImageView
93+
android:layout_width="match_parent"
94+
android:layout_height="wrap_content"
95+
android:src="@drawable/clip2" />
96+
</LinearLayout>
97+
</FrameLayout>
98+
99+
<TextView
100+
android:id="@+id/tv"
101+
android:layout_width="match_parent"
102+
android:layout_height="wrap_content"
103+
android:layout_marginBottom="10dp"
104+
android:layout_marginLeft="25dp"
105+
android:layout_marginRight="25dp"
106+
android:layout_marginTop="10dp"
107+
android:background="@drawable/selector_bg"
108+
android:paddingBottom="5dp"
109+
android:paddingTop="5dp"
110+
android:text="BlueMor"
111+
android:textSize="25sp" />
112+
</RelativeLayout>
113+
114+
</com.bluemor.pulllayout.PullLayout>

res/menu/main.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
2+
3+
<item
4+
android:id="@+id/action_settings"
5+
android:orderInCategory="100"
6+
android:showAsAction="never"
7+
android:title="@string/action_settings"/>
8+
9+
</menu>

res/values-sw600dp/dimens.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw600dp devices (e.g. 7" tablets) here.
6+
-->
7+
8+
</resources>

res/values-sw720dp-land/dimens.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
6+
-->
7+
<dimen name="activity_horizontal_margin">128dp</dimen>
8+
9+
</resources>

res/values-v11/styles.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 11+. This theme completely replaces
5+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
8+
<!-- API 11 theme customizations can go here. -->
9+
</style>
10+
11+
</resources>

res/values-v14/styles.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 14+. This theme completely replaces
5+
AppBaseTheme from BOTH res/values/styles.xml and
6+
res/values-v11/styles.xml on API 14+ devices.
7+
-->
8+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
9+
<!-- API 14 theme customizations can go here. -->
10+
</style>
11+
12+
</resources>

res/values/colors.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<color name="transgray">#33555555</color>
5+
6+
</resources>

res/values/dimens.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<resources>
2+
3+
<!-- Default screen margins, per the Android Design guidelines. -->
4+
<dimen name="activity_horizontal_margin">16dp</dimen>
5+
<dimen name="activity_vertical_margin">16dp</dimen>
6+
7+
</resources>

res/values/strings.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<string name="app_name">PullLayout</string>
5+
<string name="action_settings">Settings</string>
6+
<string name="hello_world">Hello world!</string>
7+
8+
</resources>

res/values/styles.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme, dependent on API level. This theme is replaced
5+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Light">
8+
<!--
9+
Theme customizations available in newer API levels can go in
10+
res/values-vXX/styles.xml, while customizations related to
11+
backward-compatibility can go here.
12+
-->
13+
</style>
14+
15+
<!-- Application theme. -->
16+
<style name="AppTheme" parent="AppBaseTheme">
17+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
18+
</style>
19+
20+
</resources>

screenshoot/123.gif

1.4 MB
Loading
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
package com.bluemor.pulllayout;
2+
3+
import android.annotation.SuppressLint;
4+
import android.content.Context;
5+
import android.graphics.Bitmap;
6+
import android.graphics.Canvas;
7+
import android.graphics.Paint;
8+
import android.graphics.PorterDuff;
9+
import android.graphics.PorterDuffXfermode;
10+
import android.os.Build;
11+
import android.util.AttributeSet;
12+
import android.widget.FrameLayout;
13+
14+
public class EyeView extends FrameLayout {
15+
16+
private Paint paint;
17+
private Bitmap bitmap;
18+
19+
public EyeView(Context context) {
20+
super(context);
21+
init();
22+
}
23+
24+
public EyeView(Context context, AttributeSet attrs) {
25+
super(context, attrs);
26+
init();
27+
}
28+
29+
public EyeView(Context context, AttributeSet attrs, int defStyle) {
30+
super(context, attrs, defStyle);
31+
init();
32+
}
33+
34+
@SuppressLint("NewApi")
35+
private void init() {
36+
setDrawingCacheEnabled(true);
37+
if (Build.VERSION.SDK_INT >= 11) {
38+
setLayerType(LAYER_TYPE_SOFTWARE, null);
39+
}
40+
paint = new Paint(Paint.ANTI_ALIAS_FLAG);
41+
}
42+
43+
@Override
44+
protected void dispatchDraw(Canvas canvas) {
45+
super.dispatchDraw(canvas);
46+
if (bitmap != null) {
47+
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));
48+
canvas.drawBitmap(bitmap, 0, 0, paint);
49+
paint.setXfermode(null);
50+
}
51+
}
52+
53+
public void setRadius(int radius) {
54+
if (bitmap != null && !bitmap.isRecycled()) {
55+
bitmap.recycle();
56+
}
57+
bitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888);
58+
Canvas canvas = new Canvas(bitmap);
59+
canvas.drawCircle(getWidth() / 2f, getHeight() / 2f, radius, paint);
60+
invalidate();
61+
}
62+
63+
}

0 commit comments

Comments
 (0)