- Square Open Source
- Android
- android-times-square
- assertj-android
- leakcanary
- moshi
- okhttp
- picasso
- pollexor
- retrofit
- spoon
- seismic
- sqldelight
- workflow
- anvil
- subzero
- beancounter
- subzero
- certigo
- certstrap
- ghostunnel
- go-jose
- metrics
- squalor
- PonyDebugger
- spacecommander
- Aardvark
- Ackbar
- Cleanse
- sqldelight
- SuperDelegate
- Valet
- workflow
- moshi
- okhttp
- pollexor
- retrofit
- subzero
- javapoet
- keywhiz
- rack-servlet
- JavaScript
- crossfilter
- cubism
- es6-module-transpiler
- field-kit
- js-jose
- Kotlin
- kotlinpoet
- leakcanary
- okhttp
- retrofit
- sqldelight
- workflow
- anvil
- border_patrol
- jetpack
- rails-auth
- Other
- shuttle
- jirafy
- shift
- toggle
- Android — Square TableLayout
- forcing square app icon
- 3 Answers 3
Square Open Source
As a company built on open source, here are some of the internally-developed libraries we have contributed back to the community.
Android
android-times-square
Standalone Android widget for picking a single date from a calendar view.
assertj-android
A set of AssertJ helpers geared toward testing Android.
leakcanary
LeakCanary is a memory leak detection library for Android.
moshi
A modern JSON library for Kotlin and Java.
okhttp
An HTTP client for Android, Kotlin, and Java.
A modern I/O library for Android, Kotlin, and Java.
picasso
A powerful image downloading and caching library for Android
pollexor
Java client for the Thumbor image service which allows you to build URIs in an expressive fashion using a fluent API.
retrofit
Type-safe HTTP client for Android and Java by Square, Inc.
spoon
Distributing instrumentation tests to all your Androids.
Clean, lightweight protocol buffers for Android and Java.
seismic
Android device shake detection.
sqldelight
Generates typesafe Kotlin APIs from SQL
A lightning fast, transactional, file-based FIFO for Android and Java.
workflow
A library for making composable state machines, and UIs driven by those state machines.
anvil
A Kotlin compiler plugin to make dependency injection with Dagger 2 easier.
subzero
Square’s Bitcoin Cold Storage solution.
beancounter
Utility to audit the balance of Hierarchical Deterministic (HD) wallets. Supports multisig + segwit wallets.
subzero
Square’s Bitcoin Cold Storage solution.
certigo
A utility to examine and validate certificates in a variety of formats
certstrap
Tools to bootstrap CAs, certificate requests, and signed certificates.
ghostunnel
A simple SSL/TLS proxy with mutual authentication for securing non-TLS services
go-jose
An implementation of JOSE standards (JWE, JWS, JWT) in Go
simple command line to utility to run commands on multiple hosts in parallel
metrics
Metrics Query Engine
squalor
Go SQL utility library
PonyDebugger
Remote network and data debugging for your native iOS app using Chrome Developer Tools
spacecommander
Commit fully-formatted Objective-C as a team without even trying.
Aardvark
Aardvark is a library that makes it dead simple to create actionable bug reports.
Ackbar
Testable debug assertions for Swift.
Cleanse
Lightweight Swift Dependency Injection Framework
sqldelight
Generates typesafe Kotlin APIs from SQL
SuperDelegate
SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle
Valet
Valet lets you securely store data in the iOS, tvOS, or macOS Keychain without knowing a thing about how the Keychain works. It’s easy. We promise.
workflow
A library for making composable state machines, and UIs driven by those state machines.
moshi
A modern JSON library for Kotlin and Java.
okhttp
An HTTP client for Android, Kotlin, and Java.
A modern I/O library for Android, Kotlin, and Java.
pollexor
Java client for the Thumbor image service which allows you to build URIs in an expressive fashion using a fluent API.
retrofit
Type-safe HTTP client for Android and Java by Square, Inc.
subzero
Square’s Bitcoin Cold Storage solution.
Clean, lightweight protocol buffers for Android and Java.
javapoet
A Java API for generating .java source files.
keywhiz
A system for distributing and managing secrets
rack-servlet
Embed JRuby Rack applications in your Java container.
JavaScript
crossfilter
Fast n-dimensional filtering and grouping of records.
Cube: A system for time series visualization.
cubism
Cubism.js: A JavaScript library for time series visualization.
es6-module-transpiler
Tomorrow’s JavaScript module syntax today
field-kit
FieldKit lets you take control of your text fields.
Simple object validation for JavaScript.
js-jose
JavaScript library to encrypt/decrypt data in JSON Web Encryption (JWE) format and to sign/verify data in JSON Web Signature (JWS) format. Leverages Browser’s native WebCrypto API.
Kotlin
kotlinpoet
A Kotlin API for generating .kt source files.
leakcanary
LeakCanary is a memory leak detection library for Android.
okhttp
An HTTP client for Android, Kotlin, and Java.
A modern I/O library for Android, Kotlin, and Java.
retrofit
Type-safe HTTP client for Android and Java by Square, Inc.
Clean, lightweight protocol buffers for Android and Java.
sqldelight
Generates typesafe Kotlin APIs from SQL
workflow
A library for making composable state machines, and UIs driven by those state machines.
anvil
A Kotlin compiler plugin to make dependency injection with Dagger 2 easier.
border_patrol
BorderPatrol lets you import a KML file and then check if points are inside or outside the polygons the file defines.
Code quality threshold checking as part of your build
Extract, Transform, and Load data with Ruby
Documentation format and verification
jetpack
jet.pack: package your JRuby rack app for Jetty.
rails-auth
Modular resource-based authentication and authorization for Rails/Rack
Other
shuttle
String extraction, translation and export tools for the 21st century. «Moving strings around so you don’t have to»
jirafy
Chrome extension that linkifies JIRA ticket numbers on select pages.
Platypus Platform: Tools for Scalable Deployment
shift
shift is an application that helps you run schema migrations on MySQL databases
toggle
Simple, flexible and lightweight configuration switching.
Источник
Android — Square TableLayout
I have a need to create a perfect square TableLayout. The table is a grid of equal sized objects. The problem here is that in landscape layout, the table should take up the maximum amount of space but nothing more. In other words, I need the width of the table equal to the maximum height allowable. An ad appears
10 seconds or so after the activity starts so that also adds to the complexity.
Here is what I’ve tried so far to accomplish this:
- I created a invisible view that was aligned horizontally center. I then aligned the right side of the table to this view. This works but for some devices, the screen ratio doesn’t make this setup perfect. On devices like the droid, the bottom row is squinched in because the table width is smaller than the height.
- I created an ImageView with adjustViewBounds set to true. I sourced it with a very large square image. I have it set to be above the adView and align top and align left. I then set the table layout to align to the bounds of that ImageView. This didn’t work because it was a memory hog and the image bounds never fully adjusted when the ad popped up. The image source would go to a smaller scaled square but the right bound never adjusted to the new bounds.
I think this could be very easy if I made a custom class of the TableLayout and set the tablewidth = tableheight. I am struggling with this idea because I don’t know where all I would need place the necessary logic. I suppose I would need to add it when the table gets initially drawn and again when the Table adjusts after the ad moves into place.
Can someone help with some sample code on the TableLayout class? Is there another way to do this?
Update 3/30 9:05PM PST
I’ve made some progress with a custom TableLayout class after looking through the suggestion from CommonsWare. I’m closer to achieving the solution using this class but have one left thing to solve. The new TableLayout doesn’t adjust it’s bounds so the width is still taking up additional space even though the contents are sized correctly. The width looks to be set when there isn’t an ad and it never changes after that.
Here is my really simple extended TableLayout class. Note the onMeasure method where I set the width and height both equal to the height:
Here is a screenshot of the problem. I added apurple background to the TableLayout to highlight the problem.
Источник
forcing square app icon
I will set a square app icon for my Android App made with Android Studio.
I set my own app icon with File -> New -> Vector Asset
This creates a normal and a round app icon.
If I copy and rename (ic_launcher_round.png) the quadratic app icon and install it for example on OnePlus Launcher i get the round icon, too.
My Logo is square, so it is really ugly to see it round.
How I can force a quadratic app icon? Is this possible?
If I set only android:icon=»@mipmap/ic_launcher» instead of this and android:roundIcon=»@mipmap/ic_launcher_round» in my Manifest.xml nothing change.
3 Answers 3
Your app’s icon will be rounded when a launcher decides to make it rounded.
The «launcher» is just another app, like yours, but it is not your app — it is separated completely from it, and you can’t normally influence any process that is separated from your app’s process, OS will forbid that. Only sometimes you would be able to do something like that by utilizing some form of Inter Process Communication (IPC) offered by your OS, assuming of course that the process you want to communicate with is also ‘willing to talk’ with you [utilizes the same form of IPC to allow other process to change some of its behaviors].
Also the purpose of the Android Studio’s wizard you used was to help you generate ready-to-use drawable files and it was just to save your time on making these drawables all by yourself in some image editor.
Any drawable set inside XML manifest file for being your app’s round icon will be rounded a t the end and that is no matter how it actually looks. I don’t think you can expect any currently available major launcher application to display some apps’ icons as round and some as square. It would significantly harm its user experience.
I’m afraid you will have to adapt to this situation and make your square app’s logo a little bit smaller and leave some empty space around it to allow end user’s launcher app to draw a circle around this logo.
Here you can find official recommendations for designing Android apps’ launcher icons: https://material.io/guidelines/style/icons.html#icons-icons-for-android and here you can read about the most current approach in a subject of Android apps’ icons: Adaptive ones. Any other type of icon can be treated as ‘legacy’ and used only for compatability reasons when targeting APIs below 26.
Edit: In the comments section OP mentioned some apps that do currently have square icons in their newest versions and that turned out to actually be a small UX design flaw of its developers.
Just as an example, I’ve downloaded Bytecoin app OP mentioned, and this is how it looks like on my phone, Android 7.0:
The red object in the corner has ben cut off. I think we can assume that every other app on the Google Play that displays there with square logo [which looks good in their store pages because Google Play allows square logos] will look bad when installed on phones with modern versions of launchers, especially api >=26.
Источник