My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 59: Hardcoded german text in Helper - class.
1 person starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  greentra...@googlemail.com
Closed:  Mar 2011


 
Reported by andreasw...@gmx.de, Mar 21, 2011
public static void setActivityInfoDialog(Activity activity, String title,
            String desc) {
        final Dialog activityInfoDialog = new Dialog(activity);
        activityInfoDialog.setContentView(R.layout.dialog_activityinfo);
        activityInfoDialog.setTitle("Activity Informationen");
        activityInfoDialog.setCancelable(true);
        TextView dialogTitle = (TextView) activityInfoDialog
                .findViewById(R.id.tv_dialogactivityinfo_activityTitle);
        TextView dialogDesc = (TextView) activityInfoDialog
                .findViewById(R.id.tv_dialogactivityinfo_activityDescription);
        dialogTitle.setText("Sie befinden sich hier: " + title);
        dialogDesc.setText("Beschreibung: \n" + desc);
        activityInfoDialog.show();
    }
Mar 21, 2011
Project Member #1 SakirS...@gmail.com
(No comment was entered for this change.)
Status: Accepted
Owner: greentra...@googlemail.com
Mar 21, 2011
Project Member #2 SakirS...@gmail.com
(No comment was entered for this change.)
Status: Fixed

Powered by Google Project Hosting