Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
实验最后所有代码,其中AndroidManifest.xml无法修改所有放在我学号里面了。
  • Loading branch information
WCTNOC committed May 11, 2016
1 parent db29202 commit 52b9b92
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.hzuapps.androidworks.homeworks.net1314080903112">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
android:allowBackup="true"
android:icon="@mipmap/net1314080903112ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Net1314080903112MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service
android:name=".Net1314080903112MyAccessibilityService"
android:label="Apk智能安装服务"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>

<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/net1314080903112accessibility_service_config" />
</service>

<activity android:name=".Net1314080903112FileExplorerActivity"/>
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"

/>

</LinearLayout>
1 change: 1 addition & 0 deletions app/src/main/res/layout/net1314080903112list_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
android:gravity="center_vertical"
android:layout_height="50dp"/>


</LinearLayout>
1 change: 1 addition & 0 deletions app/src/main/res/values-w820dp/net1314080903112dimens.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<resources>

<!-- Example customization of dimensions originally defined in res/values/dimens_net1314080903112.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/net1314080903112colors.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/net1314080903112dimens.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<resources>

<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/net1314080903112strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<resources>

<string name="app_name">Apk安装器</string>
<string name="accessibility_service_description">智能安装服务,无需用户的任何操作就可以自动安装程序。</string>
</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/net1314080903112styles.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<resources>


<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
android:accessibilityFlags="flagDefault"
android:accessibilityFeedbackType="feedbackGeneric"
android:canRetrieveWindowContent="true"

/>

0 comments on commit 52b9b92

Please sign in to comment.