Updated attributes of EditText

This commit is contained in:
Daniel Oeh 2012-05-31 12:42:48 +02:00
parent 278fbc224c
commit 8dc5c04aa2
2 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,9 @@
/>
<EditText android:id="@+id/etxtFeedurl"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
android:layout_height="wrap_content"
android:autoText="false"
android:capitalize="none"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@ -35,6 +35,10 @@ public class DownloadObserver extends AsyncTask<FeedFile, DownloadObserver.Downl
this.context = context;
}
@Override
protected void onCancelled(Boolean result) {
Log.d(TAG, "Task was cancelled.");
}
protected Boolean doInBackground(FeedFile... files) {
Log.d(TAG, "Background Task started.");