0
votes
1answer
29 views

hide the navigation bar “more” button at the bottom of the screen on Android

On my application, I have, on some devices (such as the HTC One) a bar containing only the "More" button (e.g : three vertical dots). Example below with the Amazon app that gets the same behavior. ...
4
votes
2answers
39 views

Android: How to draw free on top of anything (any activity)

How do you draw a view on top of all other activities regardless of what they are showing and without using transparent activities or consuming its touch events. Its like to display a custom icon on ...
0
votes
2answers
45 views

Android: error when using int array passed into class

I am passing an int array from one class to another but am getting an error when I try to access values from it. I have no idea why, hopefully someone can enlighten me? Here's the first class that ...
2
votes
4answers
45 views

Pass an array from an Activity to a View Android

I'm coding an app for android. How can I pass an int array from my activity to my view class? I've searched but not found anything that seems to answer my question. I have this class: public class ...
0
votes
1answer
40 views

All OnClickListeners react in one moment, when activity start

I have activity with ListView. I need to add several items to userWillGo and add OnClickListener to them. This is a simple code, which doesn't work, because I get reaction of all items ...
1
vote
1answer
48 views

Best way to draw images in an activity

I need to draw a bitmap and yet change it when buttons are pressed on an activity class. I have tried using a View class but unfortunately I am having no luck. I thought this would be a simple enough ...
0
votes
2answers
62 views

Why in the world does a button have to be defined after setContentView?

So I just spent 4 hours trying to get my code to work and I realized it was something so dumb. I was defining a button before my setContentView(blablabla); was called. Why on earth did this cause my ...
1
vote
2answers
29 views

Display a ListView in class View

Sorry I recreate my post and PLZ this time just answer if you know or have an idea about the answer, i'm tired about people answering "Why you do that ?" Or "Omg you don't know Android ?". In my ...
0
votes
1answer
390 views

Proper onDestroy() / How to avoid memory leaks

I read a number of articles on how to avoid memory-leaks in Android, but i'm still not quite sure if I got it right. My Application consists of a single Activity. I don't have any private or static ...
0
votes
1answer
108 views

Android screen before calling main activity

I'm developing an application for Android 4.x and realized that I have a black screen with the default action bar a second before my main screen is loaded. Anyone had this problem before? It's ...
-1
votes
1answer
67 views

How to embed opensource games in an activity [closed]

i've an app that must run on tablet in commercial place. What i want is to embed into my app some opensource android games like some taken from: ...
0
votes
3answers
60 views

Choosing View or Activity in Android programming?

I am creating an interface like Powerpoint. a Powerpoint document has several presentation pages. I want to display a page to edit and the others as a list on the left. Should I create each page as ...
0
votes
2answers
80 views

Calling an activity From another Package

I have an activity in package com.qz.launchfoneclayactivity. I need to start an activity in a package com.qz.Test. I tried Setting the component and used SetClass also but of no help...Below is my ...
0
votes
1answer
76 views

How can I get the view from an activity?

I know that this works on an onClick event handler: public void NextPage(View view) { View parentView = (View) view.getParent(); parentView.setBackground(images[imageNumber]); } This works ...
5
votes
5answers
263 views

Creating a copy of a View?

I have 2 Activities: A,B.Layout of Activity A,has a viewgroup that user changes it's content.In Activity B,I have to show that viewgroup again,without any change,it must be a real copy of that ...
1
vote
1answer
160 views

Activity vs. View. vs. SurfaceView and interaction

I am trying to make a fairly simple Android game. I am making a custom view: I am not using any buttons, rather, I am painting pixels on screen that represent buttons. The idea is that I have 3 ...
0
votes
0answers
47 views

How can I reach and show the View from Activity as a phonegap Android Plugin?

I have a standalone PDFViewer project that has its own Activity class and View (UI). I want to convert this app into a phonegap plugin which will be called by javascript with the given pdf file name ...
1
vote
1answer
110 views

Android: How to touch underlying activity

I have an activity with a GoogleMaps component. It's a linear layout with size to wrap_content and translucent style. The Map is the only ui element and has a fixed size. How can the touch events ...
0
votes
1answer
136 views

Panorama picture as a child view in Android

I am using Panoramagl library for android to display some panoramic pictures. The example project is working great. The Problem is that now I want to display panoramic picture as a child view and I ...
0
votes
0answers
58 views

Sharing information form Activity to View. NullPointerException

I have an layout and there, I have View (somethig like this) ): <app.piotrek.learning.EObrazView android:id="@+id/myView" android:layout_width="match_parent" ...
2
votes
2answers
195 views

Android: Load url on other activity's WebView

As the title says. For example: I have MainActivity and main.xml main.xml has WebView "@+id/WebView1". After opening SecondActivity, I want it to load an URL on the MainActivity's webview. Any ...
1
vote
1answer
125 views

Android: replace widgets in different activities

The thing I want to do, is actually an "Action Bar", like this: And when starting an activity, I want to replace the views beneath the action bar. Example of main.xml (simplified): <LinearLayout ...
1
vote
2answers
63 views

How to forward data from Activity class to View?

I created layout. I added View there: <app.test.application.EObrazView android:layout_width="match_parent" android:layout_height="match_parent" /> Now, for example user is clicking ...
0
votes
1answer
150 views

Pass Data from custom View to Activity or vice versa

I have an Activity that loads 2 fragments in its XML file, these two fragments have a custom view. This view is a joy stick so it has an onTouch method, however I want to get the X and Y values from ...
0
votes
0answers
33 views

Android: trouble managing Activity inside other Activity

I have five Activity. (A,B,C,D,E) The Activity A call Activity B The Activity B have three tabs. Selecting each tab new Activity (C,D,E) is recall within the Activity B. * From the activity C, D ...
2
votes
2answers
89 views

How to Dynamically check if XML contains UI Element

I have multiple XML files that need to be used by one Activity for its view, the Activity will load an XML file from the name passed to it when its created. These XML files will contain a set of UI ...
3
votes
1answer
130 views

Android: Call activity method from view extended class

I've got two classes: MenuActivity - "blank" activity, which loads layout with view as control from palette. MenuView - class extended with View, its put into layout as control from palette. In ...
1
vote
0answers
52 views

Android Media Player stop after 3 activities

I am trying to have a song im my app for all the activitie. I setup MediaPlayer in the first Activity and it play all activities but in the game Activity it stop. I try to create one more Media in the ...
1
vote
1answer
138 views

starting activity with old activity in background

Im making a game, when my mainCharacter in this game dies, or when he kills all enemies, a new intent is started, a sort of Score-screen, lets call it intent B. My game is ofc filling the whole ...
0
votes
1answer
356 views

startActivityForResult(), how does it work?

Im working on my level-selector activity right now and I want to get the result from wich level I chose in my MainGameView, that is run by another activity. How would I go about doing this? This is ...
1
vote
1answer
54 views

How to add the same View from Activity (A) to an other Activity (B)

Im a beginner in Android and I have the following Problem: I've created a TabHost within two tabs: activity A and activity B. Activity A consists of a linear Layout with dynamically added ...
0
votes
0answers
23 views

How to switch different View in one Activity?

When designing a play game. The home page is the welcome page. The other is the choice page. How the current initial View switches to you want View? It is not XML file. It is the code of View and ...
0
votes
1answer
508 views

how to add view to new activity in ViewGroup

ok so im trying to add a button/view to a new activity other than the one the Viewgroup is already in. here is my code so far: Src: public class Main extends Activity { Button btn, btn1; ...
0
votes
0answers
67 views

Why is my activity not updating correctly after it resumed?

My activity has a ViewFlipper and bottom bar, this ViewFlipper has 2 sub views. When I press the power button on the real device to turn off the screen, and back on, the bottom bar is not redrawn ...
0
votes
1answer
97 views

Android - how to show activity in widget

How I'm able to show a contents of another activity as widget in main activity? Because I have written app using tabHost with diffrent pages as diffrect activities. Now I'm using ...
1
vote
2answers
333 views

Android finishing activity from class view by touchEvent

I have got class GameActivity and in there a method setContentView(GameView). In class GameView which extends View I have got a method: public class GameView extends View{ ... public boolean ...
0
votes
4answers
222 views

ANDROID moving from view to another activity

(I have got class MainActivity (extends Activity) and there I have got method setContentView(GameView); GameView is a class which extends View and in this class (GameView) I have got method: ...
0
votes
2answers
448 views

Android start activity, make it transparent over yours

Basically I want to do the opposite of this: run another activity (that I didn't write) over top of my own, and make that activity transparent. So it would be like running another app (whatever it ...
0
votes
1answer
145 views

How to get an activity via a view owned by this activity?

I wrote a standalone custom OnClickListener class (not a member class) for my navigation bar. see codes below. class MyClickHandler implements OnClickListener { @Override public void onClick(View ...
0
votes
2answers
200 views

How to display view while doing a background process on android

I'm having a minor problem and I don't know how to do it. I created a app, that pulls information through an xml web service. The data get's parsed and inserted into a local sqlite database. ...
0
votes
1answer
144 views

Three activity/view layout with gesture

I'm very new to Android development and haven't developed with Java for about 10 years. That aside, I'm looking for some pointers as to how to go about my task. All I want initially are three ...
0
votes
3answers
311 views

How to Switch Views at Runtime?

I have the following code in my accounting application: // switch View to the Customer layout, widget id's are the same on both layouts private void hideExpenseView() { ...
5
votes
1answer
2k views

Activity.addContentView(View) == ViewGroup.addContentView(View)?

I have a question regarding Android Activitys. An Activity has the Method addContentView(View) while a ViewGroup has a (similar?) addView(View) Method. Unfortunately its undocumented "where" the View ...
0
votes
2answers
3k views

Finding Fragment View on Activity. Android findFragmentByTag(String tag) returns null

I'm trying to get a Spinner View from an added Fragment to my activity but it seems that I cannot get the fragment nor the view. I have an Activity which adds a Fragment to it's LinearLayout, the ...
0
votes
2answers
797 views

Android: Multiple views, deep navigation, one Activity. What is the best way to handle?

I'm looking for the the best way to reproduce, in an Android app, the behavior of the iPhone UiNavigationController within an UITabBarController. I'm working on this Android app where I have a ...
7
votes
2answers
17k views

Getting activity from context in android

This one has me stumped. I need to call an activity method from within a custom layout class. The problem with this is that I don't know how to access the activity from within the layout. ...
0
votes
2answers
823 views

Calling activity method from extended view class in Android

This is a problem I didn't forsee when designing the structure of my applicaton. Basically i have 3 classes. ProfileActivity //The main activity for the application. ProfileView //Which extends ...
0
votes
1answer
55 views

View underneath other views and/or activities

Is there a way to have one View opened all the time, and change the Activity on top of it? Or do I need to have that View called from all the Activities? The idea is to have View on the bottom, and ...
0
votes
1answer
154 views

Using Activity vs View in Android for eBook type App

Im a beginning Android developer with a few simple apps under my belt. I'd like to create a choose-your-own-adventure style eBook. Each page will have some text and two-buttons at the bottom. ...
1
vote
1answer
148 views

Changing views/activity in Android

I am a newbie in Android and currently I am designing an application where I have faced a big problem with changing views. I have 3 classes, each one for a different screen. I use a button to change ...

1 2 3