kodaligopi547 / droiddraw

Automatically exported from code.google.com/p/droiddraw
0 stars 0 forks source link

Margin and padding settings don't show up in preview #150

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Add some Views
2. Change padding or margin
3. Click apply

What is the expected output? What do you see instead?
I expect to see an updated preview window, but nothing changes

What version of the product are you using? On what operating system?
r1b14 on linux

Please provide any additional information below.

Original issue reported on code.google.com by jaap.hai...@gmail.com on 25 Jul 2010 at 9:46

GoogleCodeExporter commented 9 years ago
I have the same issue. The paddingleft of this radiobutton doesn't seem to work:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="24dp"
        android:layout_marginTop="29dp"
        android:paddingLeft="100dp"
        android:text="RadioButton" />
</RelativeLayout>

Original comment by R.H.A.Dr...@gmail.com on 12 Jul 2012 at 11:24