Skip to content

Commit

Permalink
add TopNews
Browse files Browse the repository at this point in the history
  • Loading branch information
xinghongfei committed Aug 18, 2016
1 parent f2f852d commit e0ba0be
Show file tree
Hide file tree
Showing 39 changed files with 2,327 additions and 159 deletions.
231 changes: 231 additions & 0 deletions .idea/codeStyleSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/dictionaries/xinghongfei.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 0 additions & 28 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,7 @@ dependencies {
compile 'com.android.support:palette-v7:24.1.1'

compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'org.sufficientlysecure:html-textview:1.3'


}
22 changes: 20 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
>

<activity android:name=".MainActivity"
android:theme="@style/Plaid.Home"
Expand Down Expand Up @@ -45,6 +46,23 @@
android:value=".MainActivity" />
</activity>

<activity
android:name=".Acivity.TopNewsDescribeActivity"
android:parentActivityName=".MainActivity"
android:theme="@style/Plaid.Translucent.Dribbble.Shot">
<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="https"
android:host="dribbble.com"
android:pathPrefix="/shots/"/>
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
</activity>

</application>

Expand Down
Loading

0 comments on commit e0ba0be

Please sign in to comment.