FrameLayout is a simple Android layout designed to hold only one child.

learn more… | top users | synonyms

0
votes
0answers
17 views

Android gallery with wrap_content height in framelayout

<?xml version="1.0" encoding="utf-8"?> <FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" > <Gallery ...
0
votes
0answers
23 views

Android background selector drawable intercepting onClick events?

I'm trying to make a phone button component with its letters on top and the number on bottom. I'm implementing it as a custom FrameLayout that uses a style that uses a selector drawable as background. ...
0
votes
0answers
18 views

Wrong behavior of FrameLayout,

My target: I want to make 2 layers. One of them is background, other layer contains different components. I try to use framelayout as main layout. Inside I have linear layout for background and ...
0
votes
0answers
30 views

How to lock a scrollable TextView on top in a FrameLayout?

I am making an android app. I have a FrameLayout which contains an ImageView and a TextView, as shown below: <FrameLayout android:layout_width="match_parent" ...
0
votes
0answers
25 views

OpenCV: Framelayout Bacground Changes After Processing Background Image

resizedBitmap = Bitmap.createScaledBitmap(croppedBitmap, picture.getWidth(), picture.getHeight(), true); //ProcessImage(resizedBitmap); BitmapDrawable bd = new ...
0
votes
1answer
22 views

How to redraw canvas in a view from activity

I have a class that extends View and have the onDraw method implemented in my xml file I have a FrameLayout with my view and a RelativeLayout with a button <?xml version="1.0" ...
0
votes
0answers
41 views

Android drag and drop setlayoutparams does not work on Android 2?

Try to implement drag and drop, move with imageview set layoutparams for imageview in Framelayout (x-axis offset) It seems my layoutparams work does not work on Android 2.x emulator. On Android 4 it ...
0
votes
0answers
16 views

Scroll Artifacts on any scrolling view if not wrapped inside a layout without margins

I have solved a weird issue, and I would like to know why it happens. My application creates screens with FrameLayout as the root element. For Simplicity, let´s say I have a Framelayout with some ...
0
votes
1answer
84 views

How to disable behind view click event Framelayout

Here i have one view pager activity which has one imageview and 2 overlay bars. there overlay bars i made using android xml file layout itself. Here my requirement is like that 1) single tap on ...
0
votes
1answer
52 views

Top and bottom images overlay on imageview Issue

I want to make my layout like this as per below picture. this image i am able to see in iphone devices. Here i used frame layout to achieve make overlays of top and bottom image bar on imageview but ...
0
votes
1answer
41 views

FrameLayout: is it possible to put child layout off-screen?

is it possible to have structure like the one below. And have LinearLayout that is at front to be off screen: <FrameLayout> <LinearLayout> .. Back Layout </LinearLayout> ...
1
vote
3answers
61 views

Android - TextView not showing

I have a TextView that used to show on the screen, and did what I wanted. However, I streamlined some later code that repositions it with a touch to it's parent FrameLayout. Now, the TextView (named ...
0
votes
4answers
49 views

Image over Image in Android

I want to put Image over Image, Video Thumb and Play Icon over it. I want to put play icon in center over the video thumb image. I am using FrameLayout for it, but play icon does not view in center. ...
0
votes
0answers
48 views

Android: Changing the activity of a TabHost Not working

I have a tab activity in which there are three tabs, each with its own activity. Problem is that I would like the tabbar to be visible for all activities. I am accomplishing this by changing the ...
0
votes
1answer
41 views

Android FrameLayout 'tabcontent' not available in activity?

I'm trying to change the activity of a tabview and i'm trying to access the framelayout entitled 'tabcontent'. I keep getting the error: tabcontent cannot be resolved or is not a field. Even ...
0
votes
1answer
213 views

Adding a Google Maps Android API v2 MapFragment and a View in a FrameLayout

Ok guys, I'm having a problem. I'm trying to put a MapFragment and a View in a FrameLayout. Sounds like something pretty basic, yet I can't do it. I keep getting this : 04-22 17:12:43.261: ...
4
votes
4answers
171 views

Full screen background image in an activity

I see many applications that use a full-screen image as background. This is an example: I want to use this in a project, the best way I've found so far to do this is to use an image with a large ...
0
votes
1answer
68 views

How to bring child of FrameLayout with tabs and custom view on top

Framelayout contains Tabs (from ActionBarSherlock) and one custom view - ArcMenu (Menu like 'Path' application). I want to bring ArcMenu on top of the tab content, but somehow its getting hidden below ...
0
votes
0answers
36 views

How can I avoid this strange behavior with FrameLayout and gravity set to Gravity.RIGHT?

I'm currently playing around with a feature in a custom android ROM and I am experiencing some odd behavior. I'm creating a STATUS_BAR_SUB_PANEL for providing the user with access to their ...
1
vote
0answers
95 views

Android YouTubePlayer with unauthorized overlay on top of player

I'm using YouTubePlayer (YouTube api for android) within a Fragment I am inflating a LinearLayout with the YouTube Player, in this way: fragmentManager = getActivity().getSupportFragmentManager(); ...
0
votes
2answers
32 views

How to put up or down a view programatically?

I have a xml that the basic "skeleton" is <RelativeLayout> <FrameLayout> <RelativeLayout> <TextView> </TextView> ...
2
votes
1answer
64 views

Best way to implement custom view with animation at the center of the screen?

My GOAL is to implement custom toast in my application as follows: MyCustomToastClass.makeText(context,View,anyDurationInMS); I want to set the "Toast" gravity, Layout, duration(not just ...
3
votes
1answer
60 views

How to get a photo of video playing inside FrameLayout in android?

I m playing a video inside a framelayout and when i press button, i want to take a photo of that video frame and i want to save it to sdcard. How can i do that? Thanks in advance
0
votes
5answers
75 views

Adding two buttons which are touching each other in Framelayout

I want to add two buttons one below another in a FrameLayout but they should be touching. However, I am not managing to do this. Here is my code: <FrameLayout android:id="@+id/lytOptions" ...
0
votes
0answers
60 views

How to set positions of fragments in FrameLayout? [closed]

I have 2 fragments. One is the background, and the other must be displayed above the first fragment at a certain exact position. This is for an android app's UI, so the second fragment should not be ...
1
vote
0answers
106 views

Hide Fragment inside framelayout in android

I got stuck with a small issue as i have shown my fragment inside framelayout without any problem but when i trying to hide fragment, it doesn't get hide and remain shown in my layout. here what i ...
0
votes
1answer
65 views

FrameLayout and percentage of screen

I have a FrameLayout that above it shows a LinearLayout My intention is that this LinearLayout always get up to 33% of the screen ... But I can not do it. I tried using "dp" but of course, the result ...
0
votes
2answers
50 views

How to switch from Button to FrameLayout based on login status

I'm trying to make it that when a user is logged in when he goes to the account settings Activity of my app he will see his Username via a FrameLayout but if he isn't logged in he will see a Login ...
0
votes
0answers
45 views

How to draw on bitmap displayed by ImageView

My application captures an image, displays it and then user crops it by drawing the contour of the image. When the "crop" button is clicked, the cropped image is shown on the screen for further ...
1
vote
1answer
89 views

LinearLayout being pushed off the screen

So for my landscape layout of a page, I want to have a sort of horizontal layout. However, my FrameLayout including my ListView goes off the screen, even though it's set to ...
0
votes
0answers
13 views

check which fragment is loaded in framelayout before replacing it

Is it possible to check whether a fragment has already been loaded into a FrameLayout before adding it?
2
votes
2answers
309 views

Handle Fragment duplication on Screen Rotate (with sample code)

There are some similar answers, but not to this situation. My situation is simple. I have an Activity with two different layouts, one in Portrait, another in Landscape. In Portrait, i use ...
1
vote
1answer
225 views

Get Fragment dynamically attached to <FrameLayout>?

Well, i got a simple <FrameLayout>: <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/FragmentContainer" android:layout_width="fill_parent" ...
0
votes
0answers
116 views

FrameLayout inflater setVisibility not working

I am a bit lost, I have a FrameLayout with the following XML: <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
0
votes
0answers
35 views

How to combine ScaleAnimation and moving of view using layout() function

I'm trying to implement dragging on Android. I have FrameLayout as an area, where draggable views (tiles) are moving. When user touches tile it should become bigger. For this need i'm using ...
0
votes
1answer
215 views

Set framelayout margin and its children width, height and position

I am currently having a programatically created framelayout with a imageview and a text view. By original layout is relative layout. RelativeLayout layout = (RelativeLayout) findViewById(R.id.rel); ...
0
votes
2answers
86 views

framelayout how to get content?

Since I had to do a custom menu for my application, I've made a fragment which act like an actionbar at the bottom of my app! But I have some conflicts with the stack (when pressing the back button). ...
0
votes
1answer
127 views

FrameLayout's margin bottom for child doesn't work

I have the following view hierarchy: <FrameLayout> <LinearLayout> <!-- Some Child views--> </LinearLayout> <ImageView> </ImageView> ...
0
votes
0answers
89 views

Dynamically create and add framelayouts android

I have created a framelayout having a button and 3 textviews inside the button. I want to duplicate this and add them dynamically through the java program one below the other. The xml code for the ...
0
votes
1answer
117 views

One Fragment with multi inner fragments for many tabs

I want a tab layout in which, on every tab there are two fragments, One above showing a progress of a task that is completed by giving input in 3 tabs, from start to end, and another main fragment ...
0
votes
3answers
79 views

android Convert FrameLayout to Drawable

I have this FrameLayout in my LinearLayout : <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/desktopsFramelayout" ...
0
votes
1answer
72 views

Android set FrameLayout as background

I have to images , and I need to put them one on another, that can be maked using Framelayout, i found answer here , but then I need to set that layout as backGround to one of my tabTitle , how it can ...
0
votes
1answer
284 views

How to use scroll view in slide Menu panel

i am using the below layout file and it is working fine in portrait mode. it contains menu panel and sliding panel. i want to enable the landscape mode also in my application but in landscape mode the ...
2
votes
1answer
97 views

layout_marginLeft works as right on Android API < 11 when View in FrameLayout

When I use layout_marginLeft or set left margin from code it works as layout_marginRight. This behavior was seen when I placed View with layout_marginLeft in FrameLayout or in a root of a layout on ...
0
votes
0answers
169 views

How do I use imageview and framelayout to move an image based on location input?

Im trying to have a image represent someone's location, and i can make the image appear on the picture but i can't change its location on the picture. I was told I should use imageview and framelayout ...
0
votes
0answers
124 views

Displaying ImageButton on top of custom camera SurfaceView

I am trying to display an imagebutton over my custom camera surfaceview using a framelayout. I have read a lot of threads about this but I can´t find a solution. Here is my code: @Override protected ...
0
votes
0answers
31 views

How do I specify the position of my MediaPlayer in FrameLayout in (x,y) format?

public void SetPositionAndSize(int x, int y, int width, int height) { final FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(240, 150, Gravity.CENTER | Gravity.RIGHT | ...
2
votes
0answers
67 views

Dynamic nested Views in Android don't restore Layout correctly after Rotation

I created an MasterDetailFlow Fragment inside an Tab-Viewpager. You can find the sourcecode here: https://github.com/M1cha/android_MasterDetailFlow_with_tabs Basically the Fragment inside the ...
0
votes
3answers
612 views

android slider implementation

I am trying to implement slider menu just like facebook android app has. I have succeeded in sliding the menu and re-sliding it back. I have two views fit in framelayout. 1. Main laout (X) 2. Menu ...
1
vote
1answer
148 views

Android: how to scale an image to fill the background of a LinearLayout without preserving aspect ratio?

I have got a RelativeLayout like this: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...

1 2 3 4 5