Top "Android-layout" questions

A layout defines the visual structure for a user interface, such as the UI for an activity, fragment or app widget.

How to hide the title bar for an Activity in XML with existing custom theme

I want to hide the titlebar for some of my activities. The problem is that I applied a style to …

android android-layout titlebar
You need to use a Theme.AppCompat theme (or descendant) with this activity

Android Studio 0.4.5 Android documentation for creating custom dialog boxes: http://developer.android.com/guide/topics/ui/dialogs.html If you …

android android-layout
How to change fontFamily of TextView in Android

So I'd like to change the android:fontFamily in Android but I don't see any pre-defined fonts in Android. How …

android android-layout textview typeface
Setting background colour of Android layout element

I am trying to, somewhat clone the design of an activity from a set of slides on Android UI design. …

android android-layout user-experience adt
What is the difference between gravity and layout_gravity in Android?

I know we can set the following values to the android:gravity and android:layout_gravity properties: center center_vertical …

android android-layout android-gravity
How do I align views at the bottom of the screen?

Here's my layout code; <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/…

android xml user-interface android-layout
Can I underline text in an Android layout?

How can I define underlined text in an Android layout xml file?

android android-layout fonts
Font size of TextView in Android application changes on changing font size from native settings

I want to specify my own text size in my application, but I am having a problem doing this. When …

android android-layout textview android-fonts