mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
A bit of indentation/whitespace changes in the xml files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28504 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a2a243b34e
commit
540dd9c2d0
4 changed files with 49 additions and 34 deletions
|
@ -1,36 +1,45 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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="org.rockbox"
|
package="org.rockbox"
|
||||||
android:versionCode="1"
|
android:versionCode="1"
|
||||||
android:versionName="1.0"
|
android:versionName="1.0"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
<application android:icon="@drawable/launcher" android:label="@string/app_name" android:debuggable="true">
|
<application android:icon="@drawable/launcher"
|
||||||
<activity android:name=".RockboxActivity"
|
android:label="@string/app_name"
|
||||||
android:launchMode="singleTask"
|
android:debuggable="true">
|
||||||
android:label="@string/app_name"
|
|
||||||
android:screenOrientation="portrait"
|
<activity android:name=".RockboxActivity"
|
||||||
android:configChanges="orientation|keyboardHidden" >
|
android:launchMode="singleTask"
|
||||||
<intent-filter>
|
android:label="@string/app_name"
|
||||||
<action android:name="android.intent.action.MAIN" />
|
android:screenOrientation="portrait"
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
android:configChanges="orientation|keyboardHidden" >
|
||||||
</intent-filter>
|
<intent-filter>
|
||||||
</activity>
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<service android:name=".RockboxService"/>
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
<receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver"
|
</intent-filter>
|
||||||
android:enabled="true"
|
</activity>
|
||||||
android:exported="true">
|
|
||||||
<intent-filter>
|
<activity android:name="KeyboardActivity"
|
||||||
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
android:theme="@android:style/Theme.Dialog">
|
||||||
</intent-filter>
|
</activity>
|
||||||
|
|
||||||
|
<activity android:name="YesnoActivity"
|
||||||
|
android:theme="@android:style/Theme.Dialog">
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<service android:name=".RockboxService"/>
|
||||||
|
|
||||||
|
<receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
||||||
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<activity android:name="KeyboardActivity" android:theme="@android:style/Theme.Dialog"></activity>
|
</application>
|
||||||
<activity android:name="YesnoActivity" android:theme="@android:style/Theme.Dialog"></activity>
|
|
||||||
</application>
|
|
||||||
<uses-sdk android:minSdkVersion="4" />
|
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<uses-sdk android:minSdkVersion="4" />
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<AbsoluteLayout android:id="@+id/AbsoluteLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"><EditText android:layout_height="wrap_content" android:text="Some Text" android:layout_width="fill_parent" android:id="@+id/KbdInput"></EditText>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
</AbsoluteLayout>
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
<EditText android:layout_height="wrap_content"
|
||||||
|
android:text="Some Text"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:id="@+id/KbdInput">
|
||||||
|
</EditText>
|
||||||
|
</LinearLayout>
|
||||||
|
|
|
@ -2,6 +2,5 @@
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent">
|
||||||
>
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<string name="app_name">Rockbox</string>
|
<string name="app_name">Rockbox</string>
|
||||||
<string name="notification">Rockbox</string>
|
<string name="notification">Rockbox</string>
|
||||||
<string name="OK">OK</string>
|
<string name="OK">OK</string>
|
||||||
<string name="Cancel">Cancel</string>
|
<string name="Cancel">Cancel</string>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue