Skip to content

Commit

Permalink
update summary
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaofengyi committed Jan 19, 2020
1 parent 516c89c commit ee18897
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Android/WorkExperience/content.provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class FrannyTestProvider extends ContentProvider {
```xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moos.launcher">
package="com.m.launcher">
<uses-permission android:name="com.franny.test.READ_PERMISSION"/>

<application
Expand All @@ -111,6 +111,6 @@ public class FrannyTestProvider extends ContentProvider {
### XXActivity.java

```JAVA
Timber.i("shared value: " + getContentResolver().getType(Uri.parse("content://com.jd.iot/device_id")));
Timber.i("shared value: " + getContentResolver().getType(Uri.parse("content://com.m.iot/device_id")));
```

6 changes: 3 additions & 3 deletions Android/WorkExperience/gridlayout.height.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ setLayoutManager(new GridLayoutManager(this, columeNum));
在子view的onMeasure里面把宽高设成一样

```xml
<com.moos.launcher.CustomConstraintlayout
<com.m.launcher.CustomConstraintlayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
...
</com.moos.launcher.CustomConstraintlayout>
</com.m.launcher.CustomConstraintlayout>
```



```java
package com.moos.launcher;
package com.m.launcher;

import android.content.Context;
import android.util.AttributeSet;
Expand Down
35 changes: 19 additions & 16 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,25 @@
* Sort
* [Ten Classic Sort](Algorithms/Sort/ten.classic.sort.md)
* Android
* Build
* [Android Build System](Android/Build/android.build.system.md)
* [Porting Apk To 4 4 4](Android/Build/porting.apk.to.4.4.4.md)
* JNI
* [Jni](Android/JNI/jni.md)
* WorkExperience
* [Add Custom Libarary](Android/WorkExperience/add.custom.libarary.md)
* [Android Adatper](Android/WorkExperience/android.adatper.md)
* [Force Landscape](Android/WorkExperience/force.landscape.md)
* [Launcher](Android/WorkExperience/launcher.md)
* [Set Default IME](Android/WorkExperience/set.default.IME.md)
* [Longer Build Finger Print](Android/WorkExperience/longer.build.finger.print.md)
* Build
* [Android Build System](Android/Build/android.build.system.md)
* [Porting Apk To 4 4 4](Android/Build/porting.apk.to.4.4.4.md)
* JNI
* [Jni](Android/JNI/jni.md)
* WorkExperience
* [Add Custom Libarary](Android/WorkExperience/add.custom.libarary.md)
* [Android Adatper](Android/WorkExperience/android.adatper.md)
* [Aosp Modify](Android/WorkExperience/aosp.modify.md)
* [Content Provider](Android/WorkExperience/content.provider.md)
* [Force Landscape](Android/WorkExperience/force.landscape.md)
* [Gridlayout Height](Android/WorkExperience/gridlayout.height.md)
* [Hidden Api](Android/WorkExperience/hidden.api.md)
* [Launcher](Android/WorkExperience/launcher.md)
* [Longer Build Finger Print](Android/WorkExperience/longer.build.finger.print.md)
* [Set Default IME](Android/WorkExperience/set.default.IME.md)
* Basic_Knowledge
* [Design](Basic_Knowledge/design.md)
* [Shift](Basic_Knowledge/shift.md)
* CodeManagement
* [Git Useful Skills](CodeManagement/git.useful.skills.md)
* Others
* [Fangjia](Others/fangjia.md)
* [Gradle](Others/gradle.md)
* [Code Style Check](CodeManagement/code.style.check.md)
* [Git Useful Skills](CodeManagement/git.useful.skills.md)

0 comments on commit ee18897

Please sign in to comment.