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"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.rockbox"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0"
|
||||
android:installLocation="auto">
|
||||
<application android:icon="@drawable/launcher" android:label="@string/app_name" android:debuggable="true">
|
||||
<activity android:name=".RockboxActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait"
|
||||
android:configChanges="orientation|keyboardHidden" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</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>
|
||||
package="org.rockbox"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0"
|
||||
android:installLocation="auto">
|
||||
<application android:icon="@drawable/launcher"
|
||||
android:label="@string/app_name"
|
||||
android:debuggable="true">
|
||||
|
||||
<activity android:name=".RockboxActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait"
|
||||
android:configChanges="orientation|keyboardHidden" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="KeyboardActivity"
|
||||
android:theme="@android:style/Theme.Dialog">
|
||||
</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>
|
||||
|
||||
<activity android:name="KeyboardActivity" android:theme="@android:style/Theme.Dialog"></activity>
|
||||
<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>
|
||||
|
||||
|
||||
</application>
|
||||
|
||||
<uses-sdk android:minSdkVersion="4" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||
|
||||
</manifest>
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?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>
|
||||
</AbsoluteLayout>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
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"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
android:layout_height="fill_parent">
|
||||
</LinearLayout>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">Rockbox</string>
|
||||
<string name="app_name">Rockbox</string>
|
||||
<string name="notification">Rockbox</string>
|
||||
<string name="OK">OK</string>
|
||||
<string name="Cancel">Cancel</string>
|
||||
|
|
Loading…
Reference in a new issue