@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<classpath> |
||||
<classpathentry kind="src" path="src"/> |
||||
<classpathentry kind="src" path="gen"/> |
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> |
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> |
||||
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/Transdroid Torrent Connect"/> |
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> |
||||
<classpathentry kind="output" path="bin/classes"/> |
||||
</classpath> |
@ -1,35 +0,0 @@
@@ -1,35 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<projectDescription> |
||||
<name>Transdroid</name> |
||||
<comment></comment> |
||||
<projects> |
||||
<project>com_actionbarsherlock</project> |
||||
<project>Transdroid Torrent Connect</project> |
||||
</projects> |
||||
<buildSpec> |
||||
<buildCommand> |
||||
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> |
||||
<arguments> |
||||
</arguments> |
||||
</buildCommand> |
||||
<buildCommand> |
||||
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> |
||||
<arguments> |
||||
</arguments> |
||||
</buildCommand> |
||||
<buildCommand> |
||||
<name>org.eclipse.jdt.core.javabuilder</name> |
||||
<arguments> |
||||
</arguments> |
||||
</buildCommand> |
||||
<buildCommand> |
||||
<name>com.android.ide.eclipse.adt.ApkBuilder</name> |
||||
<arguments> |
||||
</arguments> |
||||
</buildCommand> |
||||
</buildSpec> |
||||
<natures> |
||||
<nature>com.android.ide.eclipse.adt.AndroidNature</nature> |
||||
<nature>org.eclipse.jdt.core.javanature</nature> |
||||
</natures> |
||||
</projectDescription> |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
#Sun May 23 15:44:48 CEST 2010 |
||||
eclipse.preferences.version=1 |
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled |
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 |
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve |
||||
org.eclipse.jdt.core.compiler.compliance=1.6 |
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate |
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate |
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate |
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error |
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error |
||||
org.eclipse.jdt.core.compiler.source=1.6 |
@ -1,213 +0,0 @@
@@ -1,213 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
* This file is part of Transdroid <http://www.transdroid.org> |
||||
* |
||||
* Transdroid is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* Transdroid is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with Transdroid. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
--> |
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||||
package="org.transdroid" |
||||
android:versionName="1.1.16" |
||||
android:versionCode="161" |
||||
android:installLocation="auto"> |
||||
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16" /> |
||||
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" |
||||
android:xlargeScreens="true" android:anyDensity="true" /> |
||||
<uses-permission android:name="android.permission.INTERNET" /> |
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
||||
<uses-permission android:name="android.permission.VIBRATE" /> |
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
||||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> |
||||
|
||||
<application |
||||
android:icon="@drawable/icon" |
||||
android:label="Transdroid Torrent Manager" |
||||
android:description="@string/description" |
||||
android:theme="@style/Theme.Transdroid" |
||||
android:logo="@drawable/pixel" |
||||
android:hardwareAccelerated="false"> |
||||
|
||||
<activity |
||||
android:name="org.transdroid.gui.Torrents" |
||||
android:label="Transdroid" |
||||
android:launchMode="singleTask"> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.MAIN" /> |
||||
<category android:name="android.intent.category.LAUNCHER" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.VIEW" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<category android:name="android.intent.category.BROWSABLE" /> |
||||
<data android:mimeType="application/x-bittorrent" /> |
||||
<data android:scheme="file" android:mimeType="application/x-bittorrent" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.VIEW" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<category android:name="android.intent.category.BROWSABLE" /> |
||||
<data android:scheme="file" android:pathPattern=".*\\.torrent" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.VIEW" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<category android:name="android.intent.category.BROWSABLE" /> |
||||
<data android:mimeType="application/x-bittorrent" /> |
||||
<data android:scheme="content" android:mimeType="application/x-bittorrent" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.VIEW" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<category android:name="android.intent.category.BROWSABLE" /> |
||||
<data android:scheme="content" android:pathPattern=".*\\.torrent" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.VIEW" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<category android:name="android.intent.category.BROWSABLE" /> |
||||
<data android:scheme="magnet" /> |
||||
</intent-filter> |
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.Search" /> |
||||
</activity> |
||||
|
||||
<activity android:name="org.transdroid.gui.ServerSelection" android:label="@string/torrent_server"> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.CREATE_SHORTCUT" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
</intent-filter> |
||||
</activity> |
||||
|
||||
<activity |
||||
android:name="org.transdroid.gui.Add" |
||||
android:theme="@android:style/Theme.Dialog" |
||||
android:label="@string/menu_add" |
||||
android:excludeFromRecents="true"></activity> |
||||
|
||||
<activity |
||||
android:name="org.transdroid.gui.Details" |
||||
android:label="@string/details_details" |
||||
android:launchMode="singleTop"> |
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.Search" /> |
||||
</activity> |
||||
|
||||
<!-- Search --> |
||||
<activity |
||||
android:name="org.transdroid.gui.search.Search" |
||||
android:label="@string/search_name" |
||||
android:launchMode="singleTop"> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.MAIN" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.SEARCH" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
</intent-filter> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.SEND" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
<data android:mimeType="text/plain" /> |
||||
</intent-filter> |
||||
|
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.Search" /> |
||||
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> |
||||
</activity> |
||||
<provider android:name="org.transdroid.gui.search.TorrentSearchHistoryProvider" android:authorities="org.transdroid.TorrentSearchHistoryProvider" /> |
||||
|
||||
<activity android:name="org.transdroid.gui.search.GlobalTorrentSearch" android:label="@string/search_name" android:launchMode="singleTop"> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.SEARCH" /> |
||||
</intent-filter> |
||||
<meta-data android:name="android.app.searchable" android:resource="@xml/globalsearchable" /> |
||||
</activity> |
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.GlobalTorrentSearchProvider" /> |
||||
<provider android:name="org.transdroid.gui.search.GlobalTorrentSearchProvider" android:authorities="org.transdroid.GlobalTorrentSearchProvider" /> |
||||
|
||||
<!-- RSS --> |
||||
<activity |
||||
android:name="org.transdroid.gui.rss.RssFeeds" |
||||
android:label="@string/rss"> |
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.Search" /> |
||||
</activity> |
||||
<activity |
||||
android:name="org.transdroid.gui.rss.RssListing" |
||||
android:label="@string/rss"> |
||||
<meta-data android:name="android.app.default_searchable" android:value="org.transdroid.gui.search.Search" /> |
||||
</activity> |
||||
|
||||
<!-- Preferences screens --> |
||||
<activity android:name="org.transdroid.preferences.PreferencesMain" android:label="@string/preferences"></activity> |
||||
<activity android:name="com.xirvik.transdroid.preferences.PreferencesXirvikServer" android:label="@string/xirvik_pref_title"></activity> |
||||
<activity android:name="com.seedm8.transdroid.preferences.PreferencesSeedM8Server" android:label="@string/seedm8_pref_title"></activity> |
||||
<activity android:name="ca.seedstuff.transdroid.preferences.PreferencesSeedstuffServer" android:label="@string/seedstuff_pref_title"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesRss" android:label="@string/pref_rss_info"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesServer" android:label="@string/preferences"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesWebSearch" android:label="@string/pref_search"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesRssFeed" android:label="@string/pref_rss_info"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesInterface" android:label="@string/pref_interface"></activity> |
||||
<activity android:name="org.transdroid.preferences.PreferencesAlarm" android:label="@string/pref_alarm"></activity> |
||||
<activity android:name="org.transdroid.preferences.EzRssFeedBuilder" android:label="@string/pref_ezrss_info"></activity> |
||||
|
||||
<!-- Widgets --> |
||||
<receiver android:name="org.transdroid.widget.WidgetMedium" android:label="@string/widget_4x1"> |
||||
<intent-filter> |
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
||||
</intent-filter> |
||||
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_medium" /> |
||||
</receiver> |
||||
<receiver android:name="org.transdroid.widget.WidgetSmall" android:label="@string/widget_2x1"> |
||||
<intent-filter> |
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
||||
</intent-filter> |
||||
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_small" /> |
||||
</receiver> |
||||
<activity android:name="org.transdroid.widget.WidgetConfigure"> |
||||
<intent-filter> |
||||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
||||
</intent-filter> |
||||
</activity> |
||||
<service android:name="org.transdroid.widget.WidgetService" /> |
||||
<receiver android:name="org.transdroid.widget.WidgetUpdateReceiver" /> |
||||
|
||||
<!-- Background notification service --> |
||||
<service android:name="org.transdroid.service.AlarmService"> |
||||
<intent-filter> |
||||
<action android:name="org.transdroid.service.FORCE_CHECK"/> |
||||
</intent-filter> |
||||
</service> |
||||
<receiver android:name="org.transdroid.service.AlarmReceiver" /> |
||||
<receiver android:name="org.transdroid.service.BootReceiver"> |
||||
<intent-filter> |
||||
<action android:value="android.intent.action.BOOT_COMPLETED" android:name="android.intent.action.BOOT_COMPLETED"/> |
||||
</intent-filter> |
||||
</receiver> |
||||
|
||||
<!-- Intent-based control service --> |
||||
<service android:name="org.transdroid.service.ControlService"> |
||||
<intent-filter> |
||||
<action android:name="org.transdroid.control.SET_TRANSFER_RATES"/> |
||||
<action android:name="org.transdroid.control.PAUSE_ALL"/> |
||||
<action android:name="org.transdroid.control.RESUME_ALL"/> |
||||
<action android:name="org.transdroid.control.START_ALL"/> |
||||
<action android:name="org.transdroid.control.STOP_ALL"/> |
||||
</intent-filter> |
||||
</service> |
||||
|
||||
<!-- App and search module update service --> |
||||
<service android:name="org.transdroid.service.UpdateService" /> |
||||
<receiver android:name="org.transdroid.service.UpdateReceiver" /> |
||||
|
||||
</application> |
||||
</manifest> |
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
# This file is automatically generated by Android Tools. |
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! |
||||
# |
||||
# This file must be checked in Version Control Systems. |
||||
# |
||||
# To customize properties used by the Ant build system use, |
||||
# "ant.properties", and override values to adapt the script to your |
||||
# project structure. |
||||
|
||||
# Indicates whether an apk should be generated for each density. |
||||
split.density=false |
||||
# Project target. |
||||
target=android-16 |
||||
apk-configurations= |
||||
android.library.reference.1=../external/JakeWharton-ActionBarSherlock/library |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="0.3" android:toXScale="1.0" |
||||
android:fromYScale="0.3" android:toYScale="1.0" |
||||
android:pivotX="50%" android:pivotY="100%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:fromAlpha="0.0" android:toAlpha="1.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="0.3" android:toXScale="1.0" |
||||
android:fromYScale="0.3" android:toYScale="1.0" |
||||
android:pivotX="50%" android:pivotY="0%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:fromAlpha="0.0" android:toAlpha="1.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="0.3" android:toXScale="1.0" |
||||
android:fromYScale="0.3" android:toYScale="1.0" |
||||
android:pivotX="0%" android:pivotY="0%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:fromAlpha="0.0" android:toAlpha="1.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="1.0" android:toXScale="0.3" |
||||
android:fromYScale="1.0" android:toYScale="0.3" |
||||
android:pivotX="50%" android:pivotY="0%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/accelerate_interpolator" |
||||
android:fromAlpha="1.0" android:toAlpha="0.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="1.0" android:toXScale="0.3" |
||||
android:fromYScale="1.0" android:toYScale="0.3" |
||||
android:pivotX="0%" android:pivotY="0%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/accelerate_interpolator" |
||||
android:fromAlpha="1.0" android:toAlpha="0.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<scale |
||||
android:fromXScale="1.0" android:toXScale="0.3" |
||||
android:fromYScale="1.0" android:toYScale="0.3" |
||||
android:pivotX="50%" android:pivotY="100%" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
<alpha |
||||
android:interpolator="@android:anim/accelerate_interpolator" |
||||
android:fromAlpha="1.0" android:toAlpha="0.0" |
||||
android:duration="@android:integer/config_shortAnimTime" |
||||
/> |
||||
</set> |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 540 B |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 694 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 848 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 683 B |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 641 B |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1020 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 678 B |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 527 B |
Before Width: | Height: | Size: 799 B |
Before Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 466 B |
Before Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 623 B |
Before Width: | Height: | Size: 784 B |
Before Width: | Height: | Size: 612 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 981 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@ -1,22 +0,0 @@
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright 2010 Google Inc. |
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
you may not use this file except in compliance with the License. |
||||
You may obtain a copy of the License at |
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
Unless required by applicable law or agreed to in writing, software |
||||
distributed under the License is distributed on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
See the License for the specific language governing permissions and |
||||
limitations under the License. |
||||
--> |
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/title_button_pressed"/> |
||||
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/title_button_pressed"/> |
||||
<item android:state_focused="true" android:drawable="@drawable/title_button_selected"/> |
||||
<item android:state_focused="false" android:state_pressed="false" android:drawable="@android:color/transparent"/> |
||||
</selector> |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 852 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 593 B |
Before Width: | Height: | Size: 475 B |
Before Width: | Height: | Size: 715 B |
Before Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 692 B |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 645 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 611 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 969 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 478 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 103 B |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 247 B |
Before Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 2.1 KiB |
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<item android:state_checked="true" android:drawable="@drawable/checkbox_on" /> |
||||
<item android:drawable="@drawable/checkbox_off" /> |
||||
</selector> |
@ -1,22 +0,0 @@
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright 2010 Google Inc. |
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
you may not use this file except in compliance with the License. |
||||
You may obtain a copy of the License at |
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
Unless required by applicable law or agreed to in writing, software |
||||
distributed under the License is distributed on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
See the License for the specific language governing permissions and |
||||
limitations under the License. |
||||
--> |
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/title_button_pressed"/> |
||||
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/title_button_pressed"/> |
||||
<item android:state_focused="true" android:drawable="@drawable/title_button_selected"/> |
||||
<item android:state_focused="false" android:state_pressed="false" android:drawable="@android:color/transparent"/> |
||||
</selector> |
Before Width: | Height: | Size: 3.0 KiB |