diff options
author | Parménides GV <parmegv@sdf.org> | 2013-01-31 22:12:21 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-01-31 22:12:21 +0100 |
commit | 92c32b0b96938009af55ed28920472f22a4614ee (patch) | |
tree | 8b714947e35330ba92d618849e60b8ce5bccc6db /res | |
parent | d21e8390e90437f0d053374f8e304ca3f592beb9 (diff) |
Problems with downloaded file, the emulator cannot find the file
downloaded.
Seen http://code.google.com/p/android/issues/detail?id=18462 and decided
to look for another solution.
First solution thought (and going to be the next test): HTTP Get request
:)
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/activity_provider_list.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/res/layout/activity_provider_list.xml b/res/layout/activity_provider_list.xml new file mode 100644 index 00000000..6a6dafec --- /dev/null +++ b/res/layout/activity_provider_list.xml @@ -0,0 +1,10 @@ +<fragment xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/provider_list"
+ android:name="se.leap.leapclient.ProviderListFragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_marginLeft="16dp"
+ android:layout_marginRight="16dp"
+ tools:context=".ProviderListActivity"
+ tools:layout="@android:layout/list_content" />
|