forked from NetEase/Emmagee
-
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.
Merge pull request NetEase#86 from NetEase/develop
Develop
- Loading branch information
Showing
20 changed files
with
628 additions
and
94 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 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,47 +1,58 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.netease.qa.emmagee" | ||
android:versionCode="32" | ||
android:versionName="2.4.1" > | ||
|
||
<uses-sdk android:minSdkVersion="8" /> | ||
|
||
<application android:name=".utils.MyApplication" | ||
android:icon="@drawable/icon" | ||
android:label="@string/app_name" | ||
android:theme="@android:style/Theme.NoTitleBar"> | ||
|
||
<application | ||
android:name=".utils.MyApplication" | ||
android:icon="@drawable/icon" | ||
android:label="@string/app_name" | ||
android:theme="@android:style/Theme.NoTitleBar" > | ||
<activity | ||
android:name=".activity.MainPageActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:launchMode="singleInstance" | ||
android:screenOrientation="portrait"> | ||
android:name=".activity.MainPageActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:launchMode="singleInstance" | ||
android:screenOrientation="portrait" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activity.SettingsActivity" | ||
android:launchMode="singleInstance" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/customTheme" /> | ||
<activity | ||
android:name=".activity.AboutActivity" | ||
android:screenOrientation="portrait" /> | ||
<activity | ||
android:name=".activity.MailSettingsActivity" | ||
android:screenOrientation="portrait" /> | ||
<activity | ||
android:name=".activity.TestListActivity" | ||
android:screenOrientation="portrait" /> | ||
<activity | ||
android:name=".activity.TestReportActivity" | ||
android:screenOrientation="portrait" /> | ||
|
||
<activity android:name=".activity.SettingsActivity" | ||
android:theme="@style/customTheme" | ||
android:screenOrientation="portrait"/> | ||
|
||
<activity android:name=".activity.AboutActivity" | ||
android:screenOrientation="portrait"/> | ||
|
||
<activity android:name=".activity.MailSettingsActivity" | ||
android:screenOrientation="portrait"/> | ||
|
||
<service android:name="com.netease.qa.emmagee.service.EmmageeService"/> | ||
<service android:name="com.netease.qa.emmagee.service.EmmageeService" /> | ||
</application> | ||
|
||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> | ||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.READ_LOGS"/> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | ||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> | ||
<uses-permission android:name="android.permission.WAKE_LOCK"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="android.permission.GET_TASKS"/> | ||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.READ_LOGS" /> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | ||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.GET_TASKS" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
|
||
</manifest> |
Binary file not shown.
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
# project structure. | ||
|
||
# Project target. | ||
target=android-8 | ||
target=android-19 |
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,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle" > | ||
|
||
<stroke | ||
android:width="1dp" | ||
android:color="@color/gray" /> | ||
|
||
<padding | ||
android:bottom="2dp" | ||
android:left="2dp" | ||
android:right="2dp" | ||
android:top="2dp" /> | ||
|
||
</shape> |
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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" > | ||
<TextView | ||
android:id="@+id/attrib_name" | ||
android:textStyle="bold"/> | ||
<TextView | ||
android:id="@+id/attrib_value" | ||
android:gravity="right" | ||
android:textStyle="normal"/> | ||
|
||
</LinearLayout> |
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,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:background="@color/light_purple" | ||
android:gravity="bottom|center_horizontal|center_vertical" | ||
android:orientation="vertical" > | ||
|
||
<LinearLayout | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" > | ||
|
||
<include | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
layout="@layout/navigation_bar" /> | ||
</LinearLayout> | ||
|
||
<ListView | ||
android:id="@+id/test_list" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:cacheColorHint="@color/light_purple" | ||
android:listSelector="@color/light_purple" /> | ||
|
||
</LinearLayout> |
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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:orientation="horizontal" > | ||
|
||
<TextView | ||
android:id="@+id/package_name" | ||
android:layout_width="fill_parent" | ||
android:layout_height="50dp" | ||
android:ellipsize="end" | ||
android:textSize="18sp" | ||
android:gravity="center_vertical" | ||
android:singleLine="true" | ||
android:textColor="#5B5B5B" | ||
android:paddingLeft="10dp" | ||
android:paddingRight="10dp" /> | ||
|
||
</LinearLayout> |
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,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:background="@color/light_purple" | ||
android:orientation="vertical" > | ||
|
||
<LinearLayout | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" > | ||
|
||
<include | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
layout="@layout/navigation_bar" /> | ||
</LinearLayout> | ||
|
||
<ScrollView | ||
android:id="@+id/layout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:scrollbars="horizontal|vertical" > | ||
|
||
<HorizontalScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" > | ||
|
||
<TableLayout | ||
android:id="@+id/table_layout" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:layout_marginLeft="3dp" | ||
android:layout_marginRight="3dp" | ||
android:layout_marginTop="3dp" > | ||
</TableLayout> | ||
</HorizontalScrollView> | ||
</ScrollView> | ||
|
||
</LinearLayout> |
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
Oops, something went wrong.