-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set/Remove padding, shadow etc #26
Comments
Thanks my friend. Feel free to help me with this. Try me a pull request, or give me some time to do it. |
Thanks for quick response. Will see how I go. Please see main/res/layout/xab_about_layout.xml which has all the padding, margin settings for the libraries I believe |
Yes, It should be set by the Builder, but it's not. Today, I have it fixed in the layout xml. We need to bring this configurations to java, and set it programmatically. |
Yes is see this for other .set() - like divider line height etc values done in the java files, which in turn edit the layout xmls as such yeah. |
ok, will be done for the next couple days. If you are rushed, you can create a pull request. |
no, thats ok, just like to see features added to the library which may make this awesome lib even better. |
** See Updates **
}
|
…ard(false)); #26 - .build() method now, returns an AboutView instance. Use aboutView.getHolder() to set padding, margin, elevation...;
Hi @jrvansuita nice librarie.
I wish to see implemented the ability to remove padding from the view.
Cant see where this being set in my app.
Does the about view always stretch full width?
Does padding get added by default?
if not, would like to see something like the below;
AboutBuilder.with(activity)
.setPadding(-10)//padding
.setElevation(1) //shadow
.setMargin(-1) //margin
...
...
build();
The text was updated successfully, but these errors were encountered: