Android :: Padding Doesn't Take Effect For Shape In XML
Aug 15, 2009
I am trying to set padding in shape declared in XML file. But whatever I set, nothing changes related to padding. If I modify any other properties, I see updated UI. But it doesn't work with padding. Could you please advice possible reasons for this?
I will provide below example of my shape.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="1dp" android:color="#ffffff" android:dashWidth="2dp"/>
<solid android:color="@color/button_white_cover" />
<corners android:radius="11dp" />
<padding android:left="1dp" android:top="20dp"
android:right="20dp" android:bottom="2dp" />
</shape>
View 1 Replies
Oct 27, 2010
I'm using xml file to define progress bar. I defined padding on background shape. But this setting will be sometimes displayed correctly, sometimes not. So If I start my application or Activity with progressbar inside, there will be correctly displayed progressbar with background and 'padded' progress. Then I close my application and start it again, and, progressbar is displayed without padded background, on next start will be displayed correctly and son on ... Could you please advice possible reasons for this?
xml file:..................
View 1 Replies
View Related
Oct 25, 2009
I have a shape with a gradient that I'm using as a divider between ListView items. I've defined it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#ccd0d3"
android:centerColor="#b6babd"
android:endColor="#ccd0d3"
android:height="1px"
android:angle="0" />
</shape>
I would like to add 6 pixels of padding on either side of the gradient, so that it doesn't extend from edge to edge of the screen.
However, no matter where I put an android:left="6px" and android:right="6px", it doesn't seem to take effect. I can put it in the <shape> element, the <gradient> element, or in a separate <padding> child of <shape>, and it doesn't change anything.
How can I add padding on the left and right of my list divider?
View 2 Replies
View Related
Aug 11, 2010
I've created a custom toolbar using a gradient inside a shape. It looks very nice, but since we only have the option for 3 colors (startColor, centerColor, endColor) it looks very round. I would like to do a glass effect, which requires a sharp change in color in the middle. Basically I need 4 colors (startColor, justabovecenterColor, justbelowcenterColor, endColor). Now I could have two shapes sitting on top of each other to get this effect, but I don't want to do this. I'm getting into some tricky UI customization here and that would be very difficult to manage on different sized screens.
View 1 Replies
View Related
Aug 31, 2010
I have create a listview . When listview is created I used setSelection(0) to set it to first listitem. But there is no visual effect, the selected listitem is not changed to listed color. In my application, I want to high light the first listItem by default. Does anyone know how to do that?
View 2 Replies
View Related
Jun 21, 2010
I want to have a elmenent with a 2 color border outline. I can do a single color outline using the element, but this only allows me to draw a single line. I tried using 2 elements within my but that didnt work either. Is there a way to either draw a shape within a shape or draw 2 lines around my shape (which has rounded corners btw).
View 3 Replies
View Related
Aug 10, 2010
I have a horizontal LinearLayout. This LinearLayout has a checkbox next to another LinearLayout. The layout width/height of the checkbox is wrap_content, whereas the inner LinearLayout is fill_parent/wrap_content. The layout_weight of the inner LinearLayout is set to 1.
I've tried to add some android:padding around the checkbox to give some space around it, but no padding is given. I've also tried android:paddingLeft/Right/etc. How do I get some padding around my checkbox?
Note: I have an inner LinearLayout because I will be adding more TextViews
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight">
<CheckBox
android:id="@+id/mycheck"
android:text=""
android:layout_width="30dip"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:focusable="false"
android:background="@drawable/checkbox_background"
android:button="@drawable/checkbox"
/>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="wrap_content">
<TextView
android:id="@+id/mytext"
android:layout_width="fill_parent"
android:layout_weight="1"
android:gravity="center_vertical"
android:layout_height="wrap_content"
android:lines="1"
android:textColor="@color/white"
android:textSize="10sp"
android:textStyle="italic"/>
</LinearLayout>
</LinearLayout>
View 1 Replies
View Related
May 31, 2010
I have a list where i basically need a hierarchy of items. Any children of an item would be padded slightly, as to easily distinguish their parent item. How could this be achieved? Note that i could, if needed, make each parent show no children, and then when the parent is clicked, a new list containing all of it's children is loaded. This however requires more clicking to display information than i would prefer. Also, the items themselves will contain graphics and whatnot (to show a drag'n'drop button, etc), so it would be best if it visually appeared as if the item itself had a margin, rather than the contents of the item being padded.
View 1 Replies
View Related
Apr 26, 2010
I have a linear layout which has a background image (a 9 patched png file). How can I add padding to left and right so that the background image does not take up the whole width? I have tried 'android:paddingLeft' and 'android:paddingRight', but that does not change anything.
CODE:.....
The whole background still stretches the whole screen width.
View 1 Replies
View Related
Sep 28, 2010
I have the following layout. This defines a row in my ListView. I noticed that the text is not centered in the row. There seems to be extra bottom padding. How can I make the text appear in the center, vertically, so there is no padding? code...
View 1 Replies
View Related
Oct 18, 2010
what is the difference between padding and margin?
i want to draw a view exactly at 200 dip from the top of the screen(0,0). there are some layout in the middle.
how do i draw a view exactly at 200 dip from the top?
View 4 Replies
View Related
Apr 2, 2010
I'm following an example where the author hard coded a paddingTop to 370px. How do I make that paddingTop dynamic? When I run this in 2 AVDs with HVGA and WVGA80 I get the frame floating at different heights. I'd like to say something like paddingTop=80%, but that doesn't work.
View 1 Replies
View Related
Sep 12, 2010
I have a 3*3 TableLayout that contains buttons. But I cannot seem to remove the spacing between the buttons in the Table.Setting pading to zero for the buttons has no effect. Setting padding and layout_margin to zero for the TableRow has no effect. Setting layout_margin for the TableLayout has no effect.Any idea on how I can alter/remove/reduce the spacing between the cells?
View 4 Replies
View Related
Mar 2, 2009
I am trying to create a NinePatchDrawable programmatically, but there is no documentation on the constructor's argruments (Bitmap bitmap, byte[] chunk, Rect padding, String srcName). Does anyone know what chunk and padding are... and how to specify them?
View 7 Replies
View Related
Oct 30, 2009
Difference between View margin and padding , mPadding and mUserPadding?
View 2 Replies
View Related
Oct 16, 2009
I'm doing the HelloViews Gridview tutorial and I ran into this problem.
http://grab.by/9Vn
I have a padding that I can't find where is it coming from.
XML is the following: <?xml version="1.0" encoding="utf-8"?> <GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:numColumns="2" android:verticalSpacing="0px" android:horizontalSpacing="0px" android:stretchMode="columnWidth"android:gravity="center" android:layout_margin="0dp" />
and in my adapter:
I can't seem to find the place where I can get rid of that padding (or margin). Pictures are 160px x 160px.
View 3 Replies
View Related
Jan 26, 2009
I am probably missing something totally obvious, but can someone tell me how to add padding between buttons of a Linear Layout?
Code...
View 5 Replies
View Related
Aug 21, 2010
As the title says, I cannot get padding around the text.Here's my xml:
<style name="StandardButton" parent="@android:style/Widget.Button">
<item name="android:background">@drawable/nine_patch_3</item>
<item name="android:textColor">@color/white</item>
<item name="android:textStyle">bold</item>
<item name="android:paddingLeft">10dp</item>
<item name="android:paddingRight">10dp</item>
</style>
View 1 Replies
View Related
Jul 23, 2010
Say I add a linear layout with top padding of 20. Does it mean that the layout is rendered with 20 pixels of padding in all phones? Or does it scale according to the height/width/density of the phone?
View 2 Replies
View Related
Sep 2, 2010
As you can see in the link below there is an extra padding (around 2mm) below the EditText field. I can't seem to remove this padding in anyway. This occurs with other widgets as well (like Buttons). It looks like Android is default adding this extra padding to all elements.
http://img266.imageshack.us/img266/4000/bottompadding.png
View 1 Replies
View Related
Mar 4, 2009
Here is a skeleton of the class I'm currently working on. Unfortunatly, i'm stuck on two problems and it's driving me mad !
The first problem is about the onKeyDown(KeyEvent) : I don't understand why this method isn't called while I pressed a key on the emulator. The second problem deals with padding. Indeed, I'm always creating widget using fake paddings in order to be sure my widget correctly handle those values. Unfortunatly, I tried to extend a ProgressBar and I had some problems because my ProgressBar is clipped.
My code is :
package com.niji.android.myhouse;
import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.drawable.Drawable; import android.util.AttributeSet; import android.util.Log; import android.view.KeyEvent; import android.view.MotionEvent; import android.widget.ProgressBar; Code...
View 4 Replies
View Related
Nov 5, 2010
I have an ImageView, and I want it to be clickable. The image itself is only 32x32 pixels, but I want the clickable region to be larger so it's easier to hit. I was hoping I could set the layout margin values to increase the size of the imageview's clickable area:
<ImageView
layout_width="32dip"
layout_height="32dip"
layout_margin="20dip" />
That doesn't work, what I could do is just recreate the image resource to have a larger transparent region around it. That's a bit annoying because it's hard to tweak if I ever need to change the clickable region. It's not just a single png either, it's a statelistdrawable so I have to resize 3 different pngs if I ever need to tweak the clickable area.
Anything else I can do?
View 2 Replies
View Related
Sep 8, 2010
Okay so with my code below for adding custom look to my tabs (works great), yet I am getting a border (padding or some sort of crop I assume) around my drawable image. How and where do I remedy this?
Activity:
TabHost mTabHost = getTabHost();
Drawable mySelector = getResources().getDrawable(R.drawable.tabselector);
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 1" , mySelector).setContent(R.id.textview1));
partial tabselecter XML:
<selector
android:id="@+id/myselector"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item
android:state_focused="false"
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/darklogo"/>
<item
android:state_focused="false"
android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/lightlogo" />
Main XML:
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:padding="0px"
android:layout_marginBottom ="-4px"
android:clipToPadding="false" />
Wouldnt let me post a screenshot...
View 1 Replies
View Related
Jun 2, 2010
Just downloaded Shapewriter for My DInc. And it is awesome. All those waiting for Swype should give this a try because its pretty Incredible.
View 7 Replies
View Related
Oct 12, 2010
Anyone know where I can find this? I had it on my phone awhile ago but had to wipe and could not find it again in the market. IMO it was a tad bit better then Swype. Both great keyboards, I just liked that one better. If anyone could provide any info that would be great. Thank you.
View 2 Replies
View Related
Sep 15, 2010
How can I draw a shape (e.g. circle, rectange) that has different stroke and fill colors? Eg. A circle with green perimeter, but black inner fill.
View 3 Replies
View Related
Jan 27, 2010
Where is there information about the syntax of <shape> xml files. These can be used to define 2D graphics as I understand it. There are few spotty examples in the samples directory but that is all I have found.
View 7 Replies
View Related
Oct 20, 2010
Is there any way of defining a triangle in a shape item though a XML definition? It seems there is only rectangle, oval, line and ring. Why not a triangle?
View 4 Replies
View Related
Aug 22, 2010
I have a button on my app that I want to change the color of during different states of my application. However when I call btn.setBackgroundColor(Color.GREEN); the shape of the button changes. The rounded edges go away and I get a flat looking rectangle that is green. Is there a reason the shape is changing? Is there a a way to change the button color without the shape changing?
View 4 Replies
View Related
Oct 19, 2009
I would like to have a shape that has border only on 3 sides: top, left and right, i.e. I want bottom to be open. How can I achieve that defining shape in XML? Currently I have a normal 4 side border using the following shape XML definition:
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" >
<solid android:color="#FFE8F0F8" />
<stroke android:width="1dp" android:color="#808480" />
<padding android:left="1dp" android:top="1dp" android:right="1dp" android:bottom="1dp" /> </shape>
View 5 Replies
View Related