Change Margin of a Layout using XML in Layer-List

独自空忆成欢 提交于 2019-12-07 04:49:52

问题


I tried several options but I can't find the best way to do this: I want to change the margin of a Linear Layout when button is clicked using XML. Here's my code for the selected button:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item android:bottom="-1dp">
        <shape android:shape="rectangle" >
            <corners
                android:topLeftRadius="5dp"
                android:topRightRadius="5dp" />

            <solid android:color="#424346" />

            <stroke
                android:width="1dp"
                android:color="#2d2e2f" />
        </shape>
    </item>
</layer-list>

Now I want to add the changing of margin which if put in a separate file would look like this:

<resources>
    <style android:id="@+id/tab_label" >
        <item android:layout_marginTop="7dp"/>
    </style>
</resources>

I tried adding it as an item to the layer list but it returns an error.

Putting it in another file is quite problematic because Android can't allow two styles to be used in one element. So I want to merge the two things in one XML file.

Or, what's the best way doing this?


回答1:


Just solved it after roughly a week of trials. On this line of code:

<item android:bottom="-1dp">

Modify it to this:

<item android:bottom="-1dp" android:top="4dp">

You can customize the the number based on your preference.



来源:https://stackoverflow.com/questions/18504430/change-margin-of-a-layout-using-xml-in-layer-list

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!