Android :: Specify Layout_height As A Percentage Of Parent?

Aug 19, 2009

Is there a way to specify layout_height as a percentage of it's parent?

for example, I want an interview LinearLayout view group to only be 70% of it's parent.

Android :: Specify layout_height as a percentage of parent?


Android :: Include - Override The Layout_width/layout_height Value?

May 10, 2010

I have a layout xml file named my_layout.xml, in which the root view's layout_width and layout_height has been specified as 200px.

CODE:....

If I used this xml to be included in another xml, and specify the layout_width and layout_height as 100px.

CODE:.....................

What would be the real width/height of my_layout?

View 1 Replies View Related

Android :: Java.lang.RuntimeException - Supply Layout_height Attribute

Feb 15, 2009

I get the following error in logcat: java.lang.RuntimeException: Binary XML file line #26: You must supply a layout_height attribute. Can you please tell me which xml file that I am missing? And it said 'binary xml', does it mean it is actually line 26 in my file? or it is line 26 in the file after it compiles to be a binary xml file?..........

View 4 Replies View Related

Android :: How To Find Out Percentage Of Memory Used?

Jul 15, 2009

I want to calculate the performance for some of the task/process.How to find out the percentage of memory used by each process in the android. - is there any in build classprocess to do this?

View 7 Replies View Related

Android :: How To Display Percentage Of Progress On Bar?

Jun 8, 2009

Is there a way to display the percentage% of the progress on the bar? Simple write something on the bar in the new SDK? I have searched everywhere for a sample code...

View 3 Replies View Related

HTC EVO 4G :: Whats Your Android System Using For Battery Percentage?

Jun 9, 2010

on average what % battery is your android system using. mine usually uses from 20%-60%. On average its 40%, pretty much after normal use at any given time mine is at 40%. seem normal or a bit high? i have system panel and no app seems to be hogging or anything like that.edit: after some tweaks my android system is anywhere from 10%-40% tops.

View 15 Replies View Related

Android :: WebView Not Respecting Scaling Percentage

Jun 11, 2010

I have a WebView which I'm trying to have scale to a certain percent on loading the page. The iPhone version of this software uses the HTML meta-tag:<meta name="viewport" content="width=320, initial-scale=0.95, maximum-scale=2.0, user-scalable=1">..Since Android's WebView doesn't seem to respect that tag I hard-coded the percent using setInitialScale(). However, the WebView is just flat-out ignoring this method call. No matter what number I put in there it shows at 100%.

View 5 Replies View Related

Android :: SurfaceView Transparent Through Its Parent

Feb 11, 2009

I have a SurfaceView that is covering a portion of its parent, a RelativeLayout. I have a background image covering the full RelativeLayout area, and this is my Activity's main layout.

I would like to have the SurfaceView be transparent so that I can see through to the background image on its parent RelativeLayout. I have tried the approach shown in the API Demos example TranslucentGLSurfaceViewActivity, but this succeeds in making the transparency go all the way through my Activity to my desktop!

I'm using the "style/Theme.Translucent" theme on my activity, and setting this on my SurfaceView: mySurfaceView.getHolder().setFormat(PixelFormat.RGBA_8888);

The transparency to the desktop it kinda cool, but not what I'm trying to do! Is it possible to make a SurfaceView transparent only through to its parent?

View 2 Replies View Related

Android :: Getting Height Of Parent Layouut

Sep 7, 2010

I want to determine the available height and width of the parent layout to which I have to add my view.I have used many methods on layout like

layout.getHeight()

layout.getRootView().getHeight()

All these methods return 0(zero) as the result.My main requirement is to be able to give width to a view that is some % of the width of the layout.Also I dont want to use tag for this. I want to do it through code.

View 2 Replies View Related

Android :: Align An ImageView To Right Of Parent?

Feb 9, 2010

I have the following l relative layout, which I want an Image to the left and an Image to the right, then the rest is filled by TextView. But I can't get the last image to align right of the parent. I have added 'android:layout_alignParentRight="true"' but it does not work. code...

View 5 Replies View Related

Android :: Add Parent Align For Tab TabWidget?

Nov 21, 2010

I am writing Java code to create a tabs.i have done that.but now i want the tab widget to be in the lower part of the screen.i hope this will be achieved by adding this code. android:layout_alignParentBottom="true" let me know how to add this coding.....

View 1 Replies View Related

Android :: BringtoFront The Parent Activity?

Sep 7, 2010

As we know, startActivityForResult() used to get a result for a task from parent activity. Here when we click the setResult(). It returns the result to the parent Activity.

Child Activity means it should maintain the persistent state. That is when the users clicks a button on the child activity. It do not finishes that activity and show the Parent Activity. And again i may go to the child activity from parent activity. If the child does not exists it starts a new child activity else it should show the existing child activity with persistent content.

Simply said, my parent Activity starts a new Child Activity. Now both Activities should be alive. How to call the Parent Activity without finishing the child Activity(in other words, How to BringtoFront the parent Activity)? For this scenario,

you can not use startActivity(). Because it creates a new Activity Instance. Not Existing Parent Activity
you can not use startActivityForResult(). Because it finishes the child Activity Instance.

View 2 Replies View Related

Android :: Possible For The Child Of An ExpandableListView Also Be A Parent?

Nov 5, 2010

Is it possible for the child of an ExpandableListView also be a parent?

For example, I need something like the following: ParentA ChildA ChildB ParentB ChildC GrandchildA? GrandchildB? ParentC

View 4 Replies View Related

Android :: Customize The Parent In An ExpandableListView?

Sep 16, 2010

I'm trying to customize the parent(or header) for an expandablelist and I haven't found a solution yet. I want an imageview and two textviews in the parent. This is driving me insane atm.

View 2 Replies View Related

Android :: Textview Fill Parent ?

Jul 15, 2010

I have a simple ExpandalbeList. For the group header view, I'm using a simple TextView, I am setting the background of the text to a drawable. I have the textview parameters set to FILL_PARENT, but the background of the TextView only covers the width of the text. I realize that I can put this all inside of a Linear Layout, but that just seems like a waste. isn't there a way to make the bounds of the text view stretch to the edge of the listview?

CODE:..........................

View 1 Replies View Related

Android :: An Application To Show Battery Percentage In Status Bar?

Nov 27, 2009

Motorola Droid user coming from iPhone here. One of the features I miss is having the battery percentage indicated in the status bar next to the little icon (in fact, I'd rather just have the percentage rather than the icon). Is there an app to show that in the status bar? It seems the precision of the battery meter is by 10% increments until it reaches 20%, but even that would be better than just the icon.

View 8 Replies View Related

Android :: Dynamically Sizing Views As A Percentage - Or Similar

Mar 8, 2010

To use as an example: lets say that I have 2 EditTexts and one Button that I'm using as a login form. I want the EditTexts to be the same size, one after the other, with the login Button half their widths. Something like this:

The only way that I've been able to find to make the button 1/2 the width (but still maintain it's dynamic sizing) is to use a TableLayout with an empty view as the first field. Something like this:

CODE:.............

That feels like a god-awful hack and there has GOT to be a better way. Do you know of one?

View 1 Replies View Related

Android :: Avoid PlayerDriver Invalid Percentage Value Error?

Jun 9, 2010

I want to play a live streaming in mp3, but when i call prepareAsync, "invalid percentage value xxx" shows. This is a example of live streaming:

http://83.231.187.202:80/rtve/radio1.mp3

And this is my simplified code:

CODE:...............

I understand why this is happening, but other apps use this method and don't show any error in logcat. How can i get this?

View 2 Replies View Related

Android : Specify MaxWidth Of A TextView As Percentage Of Screen Width?

Oct 15, 2009

I noticed that it is not possible to specify a percentage value for maxWidth.

What is the best way around this?

For example, in the layout xml, is it possible to get a handle on the screen width and apply some kind of arithmetic to it (e.g. maxWidth="(60 * @screenWidth) / 100px")

Also would this approach mean the maxWidth would be automatically recalculated on orientation changes?

View 8 Replies View Related

Android :: Cannot Start Parent Application / Process Is Bad

May 12, 2009

As an exercise I attempted to add an AppWidgetProvider-derived class to one of our existing Android applications. When the widget is created and appears on the home screen, the output from adb logcat notes: W/ActivityManager(58): Unable to launch app com.mycompany.myapp/ 10042 for broadcast Intent { action=android.appwidget.action.APPWIDGET_ENABLED comp= {com.mycompany.myapp/com.mycompany.myapp.MyAppWidgetProvider} }: process is bad

This output comes from around line 10814 in ActivityManagerService (looking at cupcake on git). This is running on an ADP 1.5, FWIW. The same AppWidget code, once separated from the main application's project and put into its own simple project, runs as expected, so I know my manifest entries/XML/Java are all as they should be. Has anyone else run into this, or perhaps can the Android team comment on what aspect of my application might be preventing the AM from starting up the process when the widget is added to the home screen?

View 6 Replies View Related

Android :: Scrollable Parent With ListView Child

Dec 14, 2009

I know it's considered taboo to place a ListView inside a scrolling container, so is there any "proper" way to accomplish scrolling of a container that has a ListView child in it? An example layout would look something like:

Header
---
"Sub" header
---
ListView with list items
---
Footer

Header and Footer need to remain static on the screen, and the middle content (Subheader and ListView) should scroll between them. I can't have just the ListView scrollable, because the subheader takes up too much space. As it is currently, the Header comes from an <include />, the Subheader contains several views including an Image and some text, and the ListView (actually part of a ViewFlipper) would contain an indeterminate number of items. The Footer has a couple buttons/tabs that are used to control the ViewFlipper (only one of the views in the flipper is a ListView).

The only way I can think of to accomplish this efficiently would be to place the Subheader inside the ListView as the first item -- is there any better way?

View 1 Replies View Related

Android :: Finish Parent Activity From Child?

Mar 30, 2010

My child activity X is called from Parent activity P through startActivity(intent). I want to close P when X called its finish() method. I override a method finishFromChild(Activity child) in P and called finish() in it. But this functions (finishFromChild(Activity child)) is not being called after X finish() Is it a known bug or I am missing some thing? I googled and also searched the groups but no help.

An alternative could be... using StartActivityForResult() and a "fake" onActivityResult, where I can finish the parent activity, but this way is quite bad, i think...

I prefer the first one, if it would work....

View 3 Replies View Related

Android :: Activity That Does Not Fill The Parent Screen

Dec 14, 2009

Any idea why this doesn't create an activity that looks like a popup instead of an activity that completely fills the screen?

CODE:.............

I assumed that I only needed to set the layout height and layout width to something other than "fill_parent", but it still shows up as a black screen that completely fills the screen.

Ultimately, I simply want to create a popup, but I do not want to use an AlertDialog. Is this possible?

View 2 Replies View Related

Android :: Parent And Child Activity OnCreate?

Jul 2, 2010

I have a parent activity, and a child activity that extends the parent activity. When the parent starts the child activity,

Which onCreate gets executed first? The child's or parent's?

There is a particular variable I am setting in the Child activity's onCreate method, and right now, it looks like it takes a while to get to the Child activity's onCreate, and so the methods in the Parent are reporting an empty variable. Whereas when I make the Parent sleep for a while, it reports the correct variable.

CODE:............

So, basically, even after the Parent starts the Child, it still returns "Parent Value", but when I have the thread sleep, it return "Child Value".

View 1 Replies View Related

Android :: GridView Not Coming In Center Of Parent / What To Do?

Feb 12, 2009

I am using following to display gridview of images code...

View 2 Replies View Related

Android :: OnClickListener Not Firing From Parent Class

Aug 17, 2010

A Follow up to this question: http://stackoverflow.com/questions/3488880/group-of-views-controls-on-multiple-screens

I have created a parent class and a child class that inherits from it. When I set the OnClickListener in the child class, the event fires when the button is clicked. When I move the set OnClickListener to the parent class, the event doesn't fire. I've got to be missing something obvious but I just don't see it.

CODE:............

Child Class:

CODE:.........................

View 2 Replies View Related

Android : Use Data Passed From Parent Activity In A Sub?

Jun 28, 2010

When we want to pass data from an activity to a sub activity we use the is there any event handler that handles this?

View 1 Replies View Related

Android :: Subfolder Not Listed With The Notes In Parent Folder

Sep 6, 2010

does anyone use the subfolders function? it doesnt make sense that the subfolders are not listed with the notes in a parent folder (like on "my computer" on pc's). am i missing something? i cant figure out how to get the subfolders to appear with the notes in a given folder.

View 1 Replies View Related

Android :: Want To Open New Child Activity In Parent LinearLayout

Nov 8, 2010

I want to open new child activity in the parent LinearLayout. Just similar like Tabs.

View 1 Replies View Related

Android :: Size A View Based On Its Parent's Dimensions?

Jan 29, 2010

How can I size a view based on the size of its parent layout. For example I have a relativelayout that fills the full screen, and I want a child view, say an imageview, to take up the whole height, and 1/2 the width? I've tried overriding all on onMeasu onLayout onSizeChanged etc and I couldn't get it working....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved