Back to project page Hackful-Europe-Reader.
The source code is released under:
Apache License
If you think the Android project Hackful-Europe-Reader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2012 Damin Serrano Thode (@dsthode) //from w ww . j av a 2 s . c om 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. */ package com.nineducks.hereader; import android.app.AlertDialog; import android.app.Dialog; import android.content.Context; import android.content.DialogInterface.OnClickListener; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.text.SpannableString; import android.text.method.LinkMovementMethod; import android.text.util.Linkify; import android.util.Log; import android.widget.ScrollView; import android.widget.TextView; public class HackfulReaderActivity extends FragmentActivity { private static Context context; private HackfulItemsController itemsController; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Log.d("hereader", "entering HackfulEuropeReaderActivity.onCreate"); this.context = getApplicationContext(); setContentView(R.layout.main); itemsController = (HackfulItemsController) getSupportFragmentManager().findFragmentById(R.id.news_items_frag); Log.d("hereader", "leaving HackfulEuropeReaderActivity.onCreate"); } public static Context getContext() { return context; } @Override protected Dialog onCreateDialog(int id) { Dialog result = null; AlertDialog.Builder builder = null; switch(id) { case R.id.open_dialog: builder = new AlertDialog.Builder(this); builder.setTitle(R.string.open_dialog_title); builder.setItems(R.array.open_dialog_options, (OnClickListener) itemsController); builder.setCancelable(true); result = builder.create(); break; case R.id.about_dialog: builder = new AlertDialog.Builder(this); builder.setTitle(R.string.about_dialog_title); ScrollView scroll = new ScrollView(this); TextView msg = new TextView(this); SpannableString s = new SpannableString(getString(R.string.about_dialog_text)); Linkify.addLinks(s, Linkify.WEB_URLS); msg.setText(s); msg.setMovementMethod(LinkMovementMethod.getInstance()); msg.setTextSize(16); msg.setPadding(15, 15, 15, 15); scroll.addView(msg); builder.setView(scroll); builder.setInverseBackgroundForced(true); result = builder.create(); break; } return result; } }