-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
350 additions
and
102 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
app/src/main/java/com/yollpoll/nmb/model/repository/LauncherRepository.kt
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<TextView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:gravity="right|center_vertical" | ||
android:text="下拉列表项样式" | ||
android:textSize="18dp" | ||
android:layout_width="match_parent" | ||
android:paddingLeft="10dp" | ||
android:layout_height="@dimen/item_height" | ||
android:paddingRight="10dp" | ||
android:singleLine="true" | ||
android:ellipsize="marquee"/> |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
package com.yollpoll.base | ||
package com.yollpoll.nmb | ||
|
||
const val TAG = "nmb" | ||
const val KEY_FORUM_LIST = "forum_list" | ||
const val USER_AGENT = "NMBClient-yollpoll-android" | ||
const val APP_ID = "yollpoll" | ||
const val KEY_CUR_COOKIE = "current_cookie" | ||
const val KEY_SHOW_ANNOUNCEMENT = "show_announcement" | ||
const val KEY_OPEN_CRASH_HANDLER = "open_crash_handler" | ||
|
||
//eventbus msg | ||
const val ACTION_TAG_NAME = "action_tag_name" | ||
const val ACTION_TAG_ID = "action_tag_id" | ||
const val ACTION_SELECT_THEME = "action_select_theme" | ||
|
||
const val AUTHOR = "yollpoll" | ||
const val GIT = "https://github.com/yollpoll/nmb" | ||
const val EMAIL = "[email protected]" | ||
const val FIR = "http://d.firim.pro/newnmb"//fir仓库 | ||
|
||
const val TAG = "nmb" |
Oops, something went wrong.