Skip to content

Commit b1ccb18

Browse files
committed
Docs: Add headers to all pages
1 parent ba012e6 commit b1ccb18

7 files changed

+14
-0
lines changed

docs/accessibility-guidelines.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Accessibility Guidelines
2+
13
### Activity titles
24
When an Activity comes to the foreground, TalkBack announces it’s title. When the activity has no title, TalkBack announces the name of the application which might confuse the user -> **_set a title to all visible activities_**, either in AndroidManifest or using Activity.setTitle() method.
35

docs/coding-style.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coding Style
2+
13
Our code style guidelines are based on the [Android Code Style Guidelines for Contributors](https://source.android.com/source/code-style.html). We only changed a few rules:
24

35
* Line length is 120 characters

docs/faq.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Frequently Asked Questions
2+
13
#### I can't build/test/package the project because of a `PermGen space` error.
24

35
Create a `gradle.properties` file in the project root directory with the

docs/pull-request-guidelines.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Pull Request Guidelines
2+
13
## Branch Naming
24

35
Please read [Feature Branches](https://make.wordpress.org/mobile/handbook/general-guides/git-branching/#feature-branches) in the Handbook to learn how to name your Git branches.

docs/right-to-left-layout-guidelines.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Right to Left Layout Guidelines
2+
13
Supporting Right-to-left written scripts is quite straightforward as most issues are handled automatically by the OS or are guarded by lint.
24

35

docs/subtreed-library-projects.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Subtree'd Library Projects
2+
13
A number of library dependencies are managed as separate open source projects and are git-subtree'd into the WordPress Android app source tree. Use the following command to updated (pull latest) from their respective repos:
24

35
```

docs/using-android-resources.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Using Android Resources
2+
13
## String Resources
24

35
We use `values/strings.xml` file for *ALL* translatable strings including string arrays. Each element in a string array should be defined as separate string resource first and then the string array should be defined with `translatable="false"` flag. This is due to a GlotPress limitation where translating arrays directly could generate smaller arrays if some elements are not translated. Here is a basic example:

0 commit comments

Comments
 (0)