Skip to content

Commit

Permalink
android's qq weibo.
Browse files Browse the repository at this point in the history
  • Loading branch information
arden committed Dec 29, 2011
0 parents commit 1feac3d
Show file tree
Hide file tree
Showing 410 changed files with 8,028 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .classpath
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="lib" path="C:/Users/Administrator/Desktop/commons jar包/commons-codec.jar"/>
<classpathentry kind="lib" path="C:/Users/Administrator/Desktop/commons jar包/commons-httpclient-3.1.jar"/>
<classpathentry kind="lib" path="C:/Users/Administrator/Desktop/commons jar包/commons-logging-1.1.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>MyQQWeiboForClient3</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
4 changes: 4 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,4 @@
#Sat Jul 23 16:54:30 CST 2011
eclipse.preferences.version=1
encoding//src/com/android/caigang/view=gbk
encoding//src/com/mime/qweibo/examples=UTF-8
41 changes: 41 additions & 0 deletions AndroidManifest.xml
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.caigang"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".view.LogoActivity" android:label="@string/app_name">//Logo界面
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".view.AccountActivity" android:launchMode="singleTask">//选择默认用户界面
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="weibo" android:host="accountActivity"/>
</intent-filter>
</activity>>
<activity android:name=".view.AuthorizeActivity"/>
<activity android:name=".view.ImageActivity"/>
<activity android:name=".view.MainActivity">

</activity>
<activity android:name=".view.HomeTimeLineActivity"/>
<activity android:name=".view.ImageActivity"/>
<activity android:name=".view.ReferActivity"/>
<activity android:name=".view.MessageActivity"/>
<activity android:name=".view.SearchActivity"/>
<activity android:name=".view.AttentionActivity"/>
<activity android:name=".view.WeiboDetailActivity"/>//一条微博具体显示详情
<activity android:name=".view.UserInfoActivity"/>//用户信息界面
<activity android:name=".view.TweetsActivity"/>//广播界面
<activity android:name=".view.FansActivity"/>//粉丝界面
<activity android:name=".view.IdolActivity"/>//偶像界面
<activity android:name=".view.AddWeiboActivity"/>//发送微博界面
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
Binary file added bin/MyQQWeiboForClient3.apk
Binary file not shown.
11 changes: 11 additions & 0 deletions default.properties
@@ -0,0 +1,11 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.

# Project target.
target=android-8

0 comments on commit 1feac3d

Please sign in to comment.