Android :: Starting With Icon / Symbol As Title In Each Activity.
Feb 27, 2009
i have attached a pic which shows an activity with a blue color pic and some text as the title in the activitty....The same kind of UI is needed for my application which is applied to all the activities (about 6-8 activities) as the title... Kindly suggest how to start off as i need to give a nice jazz-up for my application...
View 5 Replies
Feb 10, 2010
I have a Samsung Moment and it is connected to my iMac for file sharing. By default when you connect, you get a generic drive icon with the title NO NAME.
Does anyone know of a way to change the generic icon? Usually you can do this with the 'get info' feature on the Mac, but once I did this, I just get a blank ICO icon file.
Just thought it would be cooler to use the Android robot icon instead whenever I connect my phone.
View 2 Replies
View Related
Dec 4, 2009
Need an example of how to create/start a new activity from the main activity. I have a button click event on the main layout. Originally I just used setContentView(R.layout.secondactivity); which brings up the layout but I don't think that is correct since the secondactivity class is not instantiated at this point yet. I have looked for such an example and can not find one.
View 3 Replies
View Related
Apr 25, 2010
I have a map app which works fine when its stand alone but it causes an unexpected error when I try to add it as part of another app. My current app which extends Activity tries to launch the map activity with the following lines of code Intent m = new Intent(this, HomeSetter.class); startActivity(m); I also have the xml setup correctly <activity android:name=".HomeSetter" android:label="Screen 4"> </activity> <uses-library android:name="com.google.android.maps" /> </application> However when I try to launch it crashes everytime. I've tried searching the net but I've had no joy in finding a solution You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe @googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
View 4 Replies
View Related
Oct 2, 2009
startActivity() displays the new Activity on top of the current one. But how to display it underneath instead? BTW, I'm starting an Activity from another application, if that makes a difference.
View 5 Replies
View Related
Apr 7, 2010
I want to hide the title bar for some of my activities. The problem is that I applied a style to all my activities, therefore I can't simply set the theme to @android:style/Theme.NoTitleBar. Using the NoTitleBar theme as a parent for my style would remove the title bar for to much activities. Can I set a no title style item somewhere?
View 4 Replies
View Related
Nov 24, 2010
i am using
Window w= getWindow();
w.setTitle("adf as afsa");
to change title of my current activity but it not seem to work.. can any one guide me how to change this?
View 1 Replies
View Related
Nov 13, 2010
i have already set the theme of my activity as android:theme = "@android:style/Theme.Dialog" but i also want to remove the title bar of the activity. so how to use android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" along with the dialog theme.
View 2 Replies
View Related
Nov 25, 2009
I dont want title bar in my application, how to remove that? in my activity?
View 7 Replies
View Related
Jun 8, 2011
I'm trying to create a custom titlebar in my app that looks like this (essentially):
For some reason, the icon shows up, but not the title text. It's really weird. For a split second you see the title text, but then it disappears and only the icon shows in the title.
My code is as follows:
==========================window_title.xml======== ==================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
androidrientation="horizontal"
android:layout_width="60px"
android:layout_height="60dip"
android:gravity="center_vertical"
[code]....
View 2 Replies
View Related
Feb 5, 2012
I use my htc rezound as a business telephone line . 90 percent of the people calling me will not be on my contact list. I hate that's all I see is unknown caller title and the generic icon show up I actually have to struggle to see the very small phone number of the general customer phone number calling in. my recently called list is full of unknown callers. all I see is just those general icons an unknown callers I have to struggle to see my recently call list phone numbers. Any way to set up.just to. show me the callers phone numbers?
View 2 Replies
View Related
May 27, 2010
I have this symbol right next to my vibrate icon to the left. It looks like a cross with a circle around it. . . what is this?
View 2 Replies
View Related
Mar 2, 2010
I guess I have my first major problem with the phone that I can't seem to figure out. As of last night, the battery icon on the top right of the screen has been showing a "?" symbol instead of the usual colored meter.
I tried charging it and the symbol doesn't change it either. Also, it does not seem to charge. I tried turning my phone on and off...and it doesn't do anything.
View 4 Replies
View Related
May 2, 2010
Is there a way to change the title of the widget/icon located on the Home screens?
View 2 Replies
View Related
Mar 5, 2010
How can I change the titlebar color in an Android app? I tried: this.setTitleColor(Color.BLUE); but it changes color of written text on it not title bar color.
View 1 Replies
View Related
Aug 15, 2010
I want to give my application launcher icon (the one that is displayed on the startscreen!) a different, shorter caption. It seems the launcher takes its label from the mainfest section about the main activity's label, as here:
<activity android:name="MainActivity" android:label="@string/app_short_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
I already changed the original reference to my app's name @string/app_name to a different, shorter string resource here. BUT - big BUT: this also of course changes this activity's default title! And I did not want that to happen, there's enough space for a long application name! Setting the long title again in onCreate using the setTitle(int) method does no good either, because the short name will be visible to the user for a short time, but long enough to notice!
And - please don't answer my question by refering to a custom titlebar... I do not want to go that long way, just because of a stupid string title! It's a pain to draw a custom title bar for so little effect! Is there no easy way to just give the launcher a different string to display?
View 2 Replies
View Related
Jan 30, 2009
Anyone know what the default Activity Title font size/style is? I'm creating a custom title but would like to match the other Activities.
View 6 Replies
View Related
Apr 19, 2009
I would like to make my activity do something when user clicked the title bar. But I could not find any information about how to manipulate the title bar. Please kindly give me some advices.
View 9 Replies
View Related
Mar 6, 2010
I have an activity with the dialog theme applied to it. I am setting the dialog title, but the string is quite long, and instead of wrapping, it just gets truncated. Is there a way to wrap the title instead?
View 2 Replies
View Related
Aug 18, 2010
In the Activity title bar, how do I put a spinning wait in the upper right corner?
View 1 Replies
View Related
Jun 9, 2010
When I was originally learning about Android a few months ago I swear I read something about a way to immediately launch an activity when starting a task. I am curious about this now because I need to display an intro screen on launch but I don't want the intro screen to be the root activity. Does anyone know if there is something like this and if not what is the best way to handle an intro screen?I tried googling for a few hours to find it but can't for the life of me.
View 1 Replies
View Related
Sep 22, 2010
am getting this error: cannot find symbol symbol: method log(java.lang.String) when using method : log("some test", +test);
I have imported import android.text.TextUtils; import android.util.Log;
Still its throwing same error why it is so ?
View 8 Replies
View Related
Feb 2, 2009
I am trying to launch an activity from another activity .. Within the com.android.SingleLauncher..
I have activity launch code as ..
CODE:...........
I have set the android:multiprocess="true" in the AndroidManifest.xml of TargetSL I don't seem to see the multiple instances of TargetSL, which i am expecting ..
All i see is 2 process, where i was hoping to see an instance of TargetSL, for each launch that was invoked by the singleLauncher!
View 3 Replies
View Related
May 7, 2010
I have four activity in a Tab and after the user clicked on the list I would like to start another one activity, but I can't use startActivity(Intent), because then I lost the TabHost view, and I get an activity witch is reserving the full screen:( So the user won't be able to click on the other tabs. What should I use? BroadCastReciver or What? If anyone have any good idea please help on me.
View 4 Replies
View Related
Mar 25, 2010
I have the code to get the list of packages installed in phone. I have represented the list in the form of Array List, below is the code snippet. But upon clicking in the package name I want to start that application, but how do I get the respective class name and package name to run? Is there any other method which I can try to start an application? arrayList<String> PackageNames = null; List<PackageInfo> lis = pm.getInstalled Packages(GET_MINIMAL); Pkgs = (ListView) findViewById(R.id.package_list); for (Package Info pi : lis)packages.put(pi.packageName, pi); PackageNames = new ArrayList<String> packages.keySet()); Collections.sort(PackageNames); PackageNames.add(0, "All"); pgs.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple _list_ item_1, PackageNames)); Pkgs.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView<?> arg0, View v, int pos,long rowId) { Intent i = new Intent(); i.setComponent(new ComponentName(class name,packagename)); startActivity(i); I have tried intent to start the activity, but don't know the class name and package name to pass in the ComponentName() to start activity.
View 2 Replies
View Related
Mar 22, 2010
I'm starting an activity when a button is pressed, and normally (in other apps) haven't had an issue. But when I press the button in this app, I get an "unable to marshal value" error.Exact(ish) error from LogCat:
03-22 02:49:02.883:
WARN/System.err(252):
java.lang.RuntimeException: Parcel:
unable to marshal value
{CLASSNAME}@44dcf1b8
I feel that this might be related to the extra that I'm passing to the intent. I'm passing an ArrayList as a serializable to this new intent. My concern is that the data structure that the ArrayList contains isn't being serialized (as it's a personal data structure).Is the array list content data structure causing this? Something else that I'm missing?
View 1 Replies
View Related
Aug 19, 2010
I'm working on an app and I want to integrate the Last.fm app into it. Basically, when someone is looking at an artist in my app, I would like to have a button that they can tap to open up Last.fm application with the artist's information.
This intent works, but it loads a menu asking which app I would like to use (Browser or Last.fm):
CODE:..........
However, I just want to start the Last.fm app and skip the dialog asking which app to use, I thought maybe using the setPackage() method would work like this: i.setPackage("fm.last.android");
But it causes the app to crash:
CODE:............
Is it possible to just start the Last.fm app?
Here's a copy of Last.fm's AndroidManifest.xml for reference.
View 1 Replies
View Related
May 16, 2010
I followed the directions verbatim in this Android tutorial, copying/pasting the code from the site to my app. http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
However, when I try to run in the Android emulator, I get the error: "The application Hello Tab Widget has stopped unexpectedly. Please try again."
I tried debugging by introducing a breakpoint in the first line of the onCreate method, but the error occurs before the breakpoint is even hit. Any idea of what is going wrong, or any other way I can debug this issue? I am using Eclipse.
View 2 Replies
View Related
Dec 31, 2009
I have 4 Tabs in a TabHost...let them be A,B,C,D.... now each one is just an index page and clicking on any of them shows a different activity...
The problem is that i need to start another activity wen user selects something from the content displayed in the tab... The other activity should also be displayed in the parent tab itself... is it by any chance possible or i'll have to try some other way around?
View 2 Replies
View Related
Apr 14, 2010
I'm trying to start a floating activity from onStart to retrieve some info from the user right when the initial activity begins.
I have the following:
CODE:............
And callProfileDialog() is just:
CODE:..........
ProfileDialog.class returns a String from an input box. If the result returned is RESULT_CANCELED then I restart the activity.
The problem I'm having is that when the program starts, the screen is just black. If I hit the Back button a RESULT_CANCELED is returned then the initial activity shows as well as the floating activity (since it recalled itself when it got a RESULT_CANCELED). Why can't I get the activities show by calling ProfileDialog.class from onStart()? I got the same result when I called it at the end of onCreate() which is way I switch over to use onStart().
I have also tried the following:
CODE:.........
But this doesn't work either. It all works fine once I hit the back button but without doing that, it's all black.
View 3 Replies
View Related