Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chrome-mobile-layouts

Package Overview
Dependencies
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-mobile-layouts

Converts and optimizes HTML pages with JavaScript into the various standard Android layouts in XML. Resources are also auto-generated. iOS will be supported including a browser based UI designer.

  • 1.7.20
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

androme

This program can convert moderately complex HTML pages into the standard XML layouts for Android. iOS will also be supported once the Android version has stabilized. HTML is the most popular and versatile way to design user interfaces and can be used to generate the UI for any platform based on XML. Currently the generated XML can be imported into your Android projects as a foundation for your layout design.

Multiple views per page are supported with their resources and styles merged into one package to simplify maintenance. Conceptually creating a snapshot history in XML of what is displayed in the browser similiar to iOS Storyboards.

Layout rendering can also be customized using extensions as the program was built to be nearly completely modular. Some of the common layouts already have built-in extensions which you can load or unload based on your preference.

The ratio is about 1 line of HTML to every 10 lines of Android XML when using androme to generate the UI for your mobile application. The real time saver is probably having the resources auto-generated for the entire project.

Installation (global js variable: androme)

*** External CSS files cannot be parsed when loading HTML pages using the file:// protocol (hard drive) with Chrome 64 or higher. Loading the HTML document from a web server (http://localhost) or embedding the CSS files into a <style> tag can get you past this security restriction. You can also try using a different browser (FireFox/Safari/Edge). Chrome is the preferred browser when generating the production version of your program. ***

Express server through Node.js is available with a provided default configuration. It is sufficient to load this program locally and can also be used for development. Using Express is highly recommended as you can create a ZIP archive of the generated resources from inside your browser which can be conveniently extracted into your project folder. Installing these dependencies are only required if you plan on using Express as your local web server.

  • Install Node.js: http://www.nodejs.com

  • Install androme: (choose one)

    1. git clone https://github.com/anpham6/androme (unstable)
    2. npm i androme (stable)
  • Change directory: (choose one)

    1. cd androme
    2. cd node_modules/androme
  • Install dependencies: (choose one)

    1. npm install && npm run prod
    2. npm install --production
  • Load web server:

    1. node app.js
  • Open Chrome: http://localhost:3000/demos/index.html

If you install via NPM then it is recommended you put androme into its own separate folder rather than hosting it inside "node_modules".

Library files are in the /dist folder. There is a babel minified for production (ES5) and non-babel version for development (ES6). The primary function "parseDocument" can be called on multiple elements and multiple times per session. The application will continuously and progressively build into a single entity with combined shared resources.

NOTE: Calling "save" or "write" methods before the images have completely loaded can sometimes cause them to be excluded from the generated layout. In these cases you should use the "parseDocument" chain method "then" to set a callback for your commands.

<script src="/dist/androme.js"></script>
<script>
    androme.settings.targetAPI = 19; // androme.build.KITKAT
    androme.settings.density = 160; // androme.density.MDPI

    // without Express: use either console.log() or element.innerHTML to display using "write" commands

    document.addEventListener('DOMContentLoaded', function() {
        // required: zero or more
        androme.parseDocument(/* document.getElementById('mainview') */, /* 'subview' */, /* etc... */);
        androme.close();
        androme.saveAllToDisk(); /* Express required */

        // optional
        androme.writeLayoutAllXml(true); /* true: save to disk, false: string xml */
        androme.writeResourceAllXml(true);
        androme.configureExtension('androme.grid', { balanceColumns: false });

        // individual
        androme.writeResourceStringXml(true);
        androme.writeResourceArrayXml(true);
        androme.writeResourceFontXml(true);
        androme.writeResourceColorXml(true);
        androme.writeResourceStyleXml(true);
        androme.writeResourceDimenXml(true);
        androme.writeResourceDrawableXml(true);

        // start new "parseDocument" session
        androme.reset();

        // only required when you are using IMG tags to display images
        androme.parseDocument(/* 'mainview' */, /* 'subview' */).then(function() {
            androme.close();
            androme.saveAllToDisk();
        });
    });
</script>

These settings are available in the global variable "androme" to customize your desired XML structure. Compatible attributes are generated based on the targetAPI setting. I have not validated every attribute in relation to the API version but the customization code can easily be modified to support your project.

androme.settings = {
    builtInExtensions: [
        'androme.external',
        'androme.list',
        'androme.table',
        'androme.grid',
        'androme.widget' // androme.widget.menu | androme.widget.toolbar | androme.widget.drawer | androme.widget.button
    ],
    targetAPI: androme.build.OREO,
    density: androme.build.MDPI,
    useConstraintLayout: true,
    useConstraintGuideline: true,
    useUnitDP: true,
    useFontAlias: true,
    supportRTL: true,
    dimensResourceValue: true,
    numberResourceValue: false,
    alwaysReevaluateResources: false,
    excludeTextColor: ['#000000'],
    excludeBackgroundColor: ['#FFFFFF'],
    horizontalPerspective: true,
    whitespaceHorizontalOffset: 4,
    whitespaceVerticalOffset: 14,
    chainPackedHorizontalOffset: 4,
    chainPackedVerticalOffset: 14,
    showAttributes: true,
    autoCloseOnWrite: true,
    outputDirectory: 'app/src/main',
    outputActivityMainFileName: 'activity_main.xml',
    outputArchiveFileType: 'zip', // zip | tar
    outputMaxProcessingTime: 30
};

You can preview the library with the provided /demos/*.html which for the the time being is the only form of documentation. Using the latest Chrome will always generate the most accurate layout.

Most layout issues are probably due to layout_width and layout_height not being set correctly. Changing wrap_content to match_parent and vice versa or setting the actual width and height will fix most problems. HTML has a very flexible layout system built for very wide screens which makes it difficult sometimes to convert them for mobile devices. Using HTML tables is recommended for most applications as it will generate a very efficient GridLayout. Performance is probably faster than ConstraintLayout and also more accurate.

form

Standard

Flexbox layouts using Constraint chains are mostly supported within the limitations of the Android API. There is also support for most of the common floating techniques.

flexbox: horizontal flexbox: vertical flexbox: wrap float: left | right | clear position: absolute

Extensions: Standard

extension: table extension: grid - balance columns extension: list

Extension "external": used for elements which are meant to be in a separate activity layout XML such as navigation menus.

Extensions: Widgets

Most of the Android support library extensions can be configured using the same attribute name in the Android documentation. See /demo/*.html for usage instructions.

<script>
    androme.configureExtension('androme.widget.drawer', { android: { layout_width: 'wrap_content', fitsSystemWindows: 'true' } });
</script>
extension: drawer - actionbar extension: menu

Auto-generated Layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
	xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:app="http://schemas.android.com/apk/res-auto"
	android:id="@+id/androme_ui"
	android:gravity="top"
	android:layout_height="wrap_content"
	android:layout_width="wrap_content"
	android:orientation="vertical">
	<TextView
		android:id="@+id/textview_1"
		android:background="@drawable/h2_textview_1"
		android:layout_height="wrap_content"
		android:layout_width="match_parent"
		android:padding="@dimen/h2_padding"
		android:text="@string/entry"
		style="@style/H2" />
	<LinearLayout
		android:id="@+id/entry"
		android:background="@drawable/form_entry"
		android:layout_height="wrap_content"
		android:layout_width="match_parent"
		android:orientation="vertical"
		android:paddingHorizontal="@dimen/form_padding_horizontal"
		android:paddingVertical="@dimen/form_padding_vertical">
		<GridLayout
			android:id="@+id/gridlayout_1"
			android:columnCount="2"
			android:layout_height="wrap_content"
			android:layout_width="match_parent"
			android:paddingBottom="@dimen/ul_padding_bottom"
			android:paddingHorizontal="@dimen/ul_padding_horizontal"
			android:paddingTop="@dimen/ul_padding_top">
			<TextView
				android:id="@+id/textview_2"
				android:labelFor="@+id/order"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/order"
				style="@style/Label_1" />
			<EditText
				android:id="@+id/order"
				android:background="@drawable/text_order"
				android:focusable="true"
				android:inputType="text"
				android:layout_height="wrap_content"
				android:layout_width="@dimen/text_width"
				android:paddingVertical="@dimen/text_padding_vertical"
				style="@style/Text" />
			<Space
				android:id="@+id/space_1"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_3"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/date_add"
				style="@style/Label" />
			<android.support.constraint.ConstraintLayout
				android:id="@+id/constraintlayout_1"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content">
				<Spinner
					android:id="@+id/month0"
					android:background="@drawable/select_hour"
					android:entries="@array/month0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/month1"
					app:layout_constraintEnd_toStartOf="@+id/day0"
					app:layout_constraintHorizontal_bias="0"
					app:layout_constraintHorizontal_chainStyle="packed"
					app:layout_constraintStart_toStartOf="parent"
					app:layout_constraintTop_toTopOf="parent"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/day0"
					android:background="@drawable/select_hour"
					android:entries="@array/day0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/day1"
					app:layout_constraintEnd_toStartOf="@+id/year0"
					app:layout_constraintStart_toEndOf="@+id/month0"
					app:layout_constraintTop_toTopOf="parent"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/year0"
					android:background="@drawable/select_hour"
					android:entries="@array/year0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/year1"
					app:layout_constraintEnd_toEndOf="parent"
					app:layout_constraintStart_toEndOf="@+id/day0"
					app:layout_constraintTop_toTopOf="parent"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/month1"
					android:background="@drawable/select_hour"
					android:entries="@array/month0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/month2"
					app:layout_constraintEnd_toStartOf="@+id/day1"
					app:layout_constraintHorizontal_bias="0"
					app:layout_constraintHorizontal_chainStyle="packed"
					app:layout_constraintStart_toStartOf="parent"
					app:layout_constraintTop_toBottomOf="@+id/month0"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/day1"
					android:background="@drawable/select_hour"
					android:entries="@array/day0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/day2"
					app:layout_constraintEnd_toStartOf="@+id/year1"
					app:layout_constraintStart_toEndOf="@+id/month1"
					app:layout_constraintTop_toBottomOf="@+id/day0"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/year1"
					android:background="@drawable/select_hour"
					android:entries="@array/year0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintBottom_toTopOf="@+id/year2"
					app:layout_constraintEnd_toEndOf="parent"
					app:layout_constraintStart_toEndOf="@+id/day1"
					app:layout_constraintTop_toBottomOf="@+id/year0"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/month2"
					android:background="@drawable/select_hour"
					android:entries="@array/month0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintEnd_toStartOf="@+id/day2"
					app:layout_constraintHorizontal_bias="0"
					app:layout_constraintHorizontal_chainStyle="packed"
					app:layout_constraintStart_toStartOf="parent"
					app:layout_constraintTop_toBottomOf="@+id/month1"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/day2"
					android:background="@drawable/select_hour"
					android:entries="@array/day0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintEnd_toStartOf="@+id/year2"
					app:layout_constraintStart_toEndOf="@+id/month2"
					app:layout_constraintTop_toBottomOf="@+id/day1"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
				<Spinner
					android:id="@+id/year2"
					android:background="@drawable/select_hour"
					android:entries="@array/year0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_marginTop="@dimen/select_margin_top"
					android:layout_width="wrap_content"
					android:paddingVertical="@dimen/select_padding_vertical"
					app:layout_constraintEnd_toEndOf="parent"
					app:layout_constraintStart_toEndOf="@+id/day2"
					app:layout_constraintTop_toBottomOf="@+id/year1"
					app:layout_constraintWidth_min="@dimen/select_constraintwidth_min"
					style="@style/Select" />
			</android.support.constraint.ConstraintLayout>
			<Space
				android:id="@+id/space_2"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_4"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/time"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_1"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<Spinner
					android:id="@+id/hour"
					android:background="@drawable/select_hour"
					android:entries="@array/hour_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Spinner
					android:id="@+id/minute"
					android:background="@drawable/select_hour"
					android:entries="@array/minute_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
			</LinearLayout>
			<Space
				android:id="@+id/space_3"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_5"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/type"
				style="@style/Label" />
			<Spinner
				android:id="@+id/typeofentry"
				android:background="@drawable/select_hour"
				android:entries="@array/typeofentry_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="@dimen/select_width"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_4"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_6"
				android:labelFor="@+id/topic0"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/topic_add"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_2"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<EditText
					android:id="@+id/topic0"
					android:background="@drawable/text_order"
					android:focusable="true"
					android:inputType="text"
					android:layout_height="wrap_content"
					android:layout_marginEnd="@dimen/text_margin_end"
					android:layout_width="@dimen/text_width_1"
					android:paddingVertical="@dimen/text_padding_vertical"
					style="@style/Text" />
				<Spinner
					android:id="@+id/prominence0"
					android:background="@drawable/select_hour"
					android:entries="@array/typeofentry_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
			</LinearLayout>
			<Space
				android:id="@+id/space_5"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_7"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/series"
				style="@style/Label" />
			<Spinner
				android:id="@+id/series"
				android:background="@drawable/select_hour"
				android:entries="@array/series_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="@dimen/select_width_1"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_6"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_8"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/subset"
				style="@style/Label" />
			<Spinner
				android:id="@+id/subset"
				android:background="@drawable/select_hour"
				android:entries="@array/typeofentry_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_7"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_9"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/active"
				style="@style/Label" />
			<Spinner
				android:id="@+id/entryactive"
				android:background="@drawable/select_hour"
				android:entries="@array/entryactive_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
		</GridLayout>
		<View
			android:id="@+id/view_1"
			android:background="@color/light_gray_1"
			android:layout_height="@dimen/hr_height"
			android:layout_margin="@dimen/hr_margin"
			android:layout_width="match_parent" />
		<GridLayout
			android:id="@+id/gridlayout_2"
			android:columnCount="2"
			android:layout_height="wrap_content"
			android:layout_width="match_parent"
			android:paddingBottom="@dimen/ul_padding_bottom"
			android:paddingHorizontal="@dimen/ul_padding_horizontal"
			android:paddingTop="@dimen/ul_padding_top">
			<TextView
				android:id="@+id/textview_10"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/series"
				style="@style/Label_1" />
			<Spinner
				android:id="@+id/series_1"
				android:background="@drawable/select_hour"
				android:entries="@array/series_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="@dimen/select_width_1"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_8"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_11"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/subset"
				style="@style/Label" />
			<Spinner
				android:id="@+id/subset_1"
				android:background="@drawable/select_hour"
				android:entries="@array/typeofentry_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_9"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_12"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/entries"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_3"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<Spinner
					android:id="@+id/entry_1"
					android:background="@drawable/select_hour"
					android:entries="@array/typeofentry_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="@dimen/select_width_1"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Button
					android:id="@+id/button_1"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/open"
					android:textAllCaps="false"
					style="@style/Button_1" />
				<Button
					android:id="@+id/button_2"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/all"
					android:textAllCaps="false"
					style="@style/Button_1" />
			</LinearLayout>
			<Space
				android:id="@+id/space_10"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_13"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/mode"
				style="@style/Label" />
			<Spinner
				android:id="@+id/mode"
				android:background="@drawable/select_hour"
				android:entries="@array/mode_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_11"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_14"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/style"
				style="@style/Label" />
			<Spinner
				android:id="@+id/style1"
				android:background="@drawable/select_hour"
				android:entries="@array/typeofentry_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_12"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_15"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/calendar"
				style="@style/Label" />
			<Spinner
				android:id="@+id/calendar"
				android:background="@drawable/select_hour"
				android:entries="@array/calendar_array"
				android:focusable="true"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:minWidth="@dimen/select_minwidth"
				android:paddingVertical="@dimen/select_padding_vertical"
				style="@style/Select" />
			<Space
				android:id="@+id/space_13"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_16"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/version"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_4"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<Spinner
					android:id="@+id/version"
					android:background="@drawable/select_hour"
					android:entries="@array/version_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Spinner
					android:id="@+id/version_update"
					android:background="@drawable/select_hour"
					android:entries="@array/version_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Button
					android:id="@+id/button_3"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start_1"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/update"
					android:textAllCaps="false"
					style="@style/Button" />
			</LinearLayout>
			<Space
				android:id="@+id/space_14"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_17"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/branch"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_5"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<Spinner
					android:id="@+id/branch"
					android:background="@drawable/select_hour"
					android:entries="@array/branch_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Spinner
					android:id="@+id/branch_update"
					android:background="@drawable/select_hour"
					android:entries="@array/branch_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Button
					android:id="@+id/button_4"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start_1"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/update"
					android:textAllCaps="false"
					style="@style/Button" />
				<Button
					android:id="@+id/button_5"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/clone"
					android:textAllCaps="false"
					style="@style/Button" />
			</LinearLayout>
			<Space
				android:id="@+id/space_15"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_18"
				android:labelFor="@+id/customname0"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/custom_add"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_6"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<EditText
					android:id="@+id/customname0"
					android:background="@drawable/text_order"
					android:focusable="true"
					android:inputType="text"
					android:layout_height="wrap_content"
					android:layout_marginEnd="@dimen/text_margin_end"
					android:layout_width="@dimen/text_width_1"
					android:paddingVertical="@dimen/text_padding_vertical"
					style="@style/Text" />
				<Spinner
					android:id="@+id/custommonth0"
					android:background="@drawable/select_hour"
					android:entries="@array/month0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<Spinner
					android:id="@+id/customday0"
					android:background="@drawable/select_hour"
					android:entries="@array/day0_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/select_margin_start"
					android:layout_width="wrap_content"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
			</LinearLayout>
			<Space
				android:id="@+id/space_16"
				android:layout_columnSpan="2"
				android:layout_height="@dimen/space_height"
				android:layout_width="match_parent" />
			<TextView
				android:id="@+id/textview_19"
				android:layout_height="wrap_content"
				android:layout_marginEnd="@dimen/label_margin_end"
				android:layout_width="@dimen/label_width"
				android:paddingTop="@dimen/label_padding_top"
				android:text="@string/conclusion"
				style="@style/Label" />
			<LinearLayout
				android:id="@+id/linearlayout_7"
				android:layout_height="wrap_content"
				android:layout_width="wrap_content"
				android:orientation="horizontal">
				<Spinner
					android:id="@+id/person"
					android:background="@drawable/select_hour"
					android:entries="@array/typeofentry_array"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_width="@dimen/select_width_2"
					android:minWidth="@dimen/select_minwidth"
					android:paddingVertical="@dimen/select_padding_vertical"
					style="@style/Select" />
				<LinearLayout
					android:id="@+id/linearlayout_8"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/div_margin_start"
					android:layout_width="wrap_content"
					android:orientation="horizontal">
					<RadioGroup
						android:id="@+id/radiogroup_1"
						android:checkedButton="@+id/c2"
						android:layout_height="wrap_content"
						android:layout_width="wrap_content"
						android:orientation="horizontal">
						<RadioButton
							android:id="@+id/c2"
							android:focusable="true"
							android:layout_height="wrap_content"
							android:layout_marginEnd="@dimen/radio_margin_end"
							android:layout_marginStart="@dimen/radio_margin_start"
							android:layout_marginTop="@dimen/radio_margin_top"
							android:layout_width="wrap_content"
							android:text="@string/birth"
							style="@style/Radio" />
						<RadioButton
							android:id="@+id/c3"
							android:focusable="true"
							android:layout_height="wrap_content"
							android:layout_marginEnd="@dimen/radio_margin_end"
							android:layout_marginStart="@dimen/radio_margin_start_1"
							android:layout_marginTop="@dimen/radio_margin_top"
							android:layout_width="wrap_content"
							android:text="@string/death"
							style="@style/Radio" />
					</RadioGroup>
					<CheckBox
						android:id="@+id/c4"
						android:focusable="true"
						android:layout_height="wrap_content"
						android:layout_marginEnd="@dimen/checkbox_margin_end"
						android:layout_marginStart="@dimen/checkbox_margin_start"
						android:layout_marginVertical="@dimen/checkbox_margin_vertical"
						android:layout_width="wrap_content"
						android:text="@string/none"
						style="@style/Checkbox" />
				</LinearLayout>
				<Button
					android:id="@+id/button_6"
					android:background="@drawable/button_button_1"
					android:focusable="true"
					android:layout_height="wrap_content"
					android:layout_marginStart="@dimen/button_margin_start"
					android:layout_width="wrap_content"
					android:minHeight="@dimen/button_minheight"
					android:minWidth="@dimen/button_minwidth"
					android:paddingHorizontal="@dimen/button_padding_horizontal"
					android:paddingVertical="@dimen/button_padding_vertical"
					android:text="@string/update"
					android:textAllCaps="false"
					style="@style/Button" />
			</LinearLayout>
		</GridLayout>
	</LinearLayout>
</LinearLayout>

String Resources

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<string name="__00_inactive">00 - Inactive</string>
	<string name="__01_active">01 - Active</string>
	<string name="active">Active:</string>
	<string name="all">All</string>
	<string name="app_name">androme</string>
	<string name="birth">Birth</string>
	<string name="branch">Branch:</string>
	<string name="calendar">Calendar:</string>
	<string name="clone">Clone</string>
	<string name="conclusion">Conclusion:</string>
	<string name="custom_add">Custom (<a href="#" style="">Add</a>):</string>
	<string name="date_add">Date (<a href="#" style="">Add</a>):</string>
	<string name="death">Death</string>
	<string name="entries">Entries:</string>
	<string name="entry">Entry</string>
	<string name="mode">Mode:</string>
	<string name="no">No</string>
	<string name="none">None</string>
	<string name="open">Open</string>
	<string name="order">Order:</string>
	<string name="predefined">Predefined</string>
	<string name="series">Series:</string>
	<string name="style">Style:</string>
	<string name="subset">Subset:</string>
	<string name="time">Time:</string>
	<string name="topic_add">Topic (<a href="#" style="">Add</a>):</string>
	<string name="type">Type:</string>
	<string name="update">Update</string>
	<string name="variant">Variant</string>
	<string name="version">Version:</string>
	<string name="yes">Yes</string>
</resources>
<!-- filename: res/values/strings.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
	<string-array name="branch_array">
		<item>0</item>
		<item>1</item>
		<item>2</item>
		<item>3</item>
		<item>4</item>
		<item>5</item>
		<item>6</item>
		<item>7</item>
		<item>8</item>
		<item>9</item>
		<item>10</item>
	</string-array>
	<string-array name="calendar_array">
		<item>@string/birth</item>
		<item>@string/death</item>
	</string-array>
	<string-array name="day0_array">
		<item>01</item>
		<item>02</item>
		<item>03</item>
		<item>04</item>
		<item>05</item>
		<item>06</item>
		<item>07</item>
		<item>08</item>
		<item>09</item>
		<item>10</item>
		<item>11</item>
		<item>12</item>
		<item>13</item>
		<item>14</item>
		<item>15</item>
		<item>16</item>
		<item>17</item>
		<item>18</item>
		<item>19</item>
		<item>20</item>
		<item>21</item>
		<item>22</item>
		<item>23</item>
		<item>24</item>
		<item>25</item>
		<item>26</item>
		<item>27</item>
		<item>28</item>
		<item>29</item>
		<item>30</item>
		<item>31</item>
	</string-array>
	<string-array name="entryactive_array">
		<item>@string/yes</item>
		<item>@string/no</item>
	</string-array>
	<string-array name="hour_array">
		<item>00</item>
		<item>01</item>
		<item>02</item>
		<item>03</item>
		<item>04</item>
		<item>05</item>
		<item>06</item>
		<item>07</item>
		<item>08</item>
		<item>09</item>
		<item>10</item>
		<item>11</item>
		<item>12</item>
		<item>13</item>
		<item>14</item>
		<item>15</item>
		<item>16</item>
		<item>17</item>
		<item>18</item>
		<item>19</item>
		<item>20</item>
		<item>21</item>
		<item>22</item>
		<item>23</item>
	</string-array>
	<string-array name="minute_array">
		<item>00</item>
		<item>15</item>
		<item>30</item>
		<item>45</item>
	</string-array>
	<string-array name="mode_array">
		<item>@string/variant</item>
		<item>@string/predefined</item>
	</string-array>
	<string-array name="month0_array">
		<item>01</item>
		<item>02</item>
		<item>03</item>
		<item>04</item>
		<item>05</item>
		<item>06</item>
		<item>07</item>
		<item>08</item>
		<item>09</item>
		<item>10</item>
		<item>11</item>
		<item>12</item>
	</string-array>
	<string-array name="series_array">
		<item>@string/__00_inactive</item>
		<item>@string/__01_active</item>
	</string-array>
	<string-array name="typeofentry_array">
		<item>0</item>
		<item>1</item>
	</string-array>
	<string-array name="version_array">
		<item>0</item>
		<item>1</item>
		<item>2</item>
	</string-array>
	<string-array name="year0_array">
		<item>2001</item>
		<item>2002</item>
		<item>2003</item>
		<item>2004</item>
		<item>2005</item>
		<item>2006</item>
		<item>2007</item>
		<item>2008</item>
		<item>2009</item>
		<item>2010</item>
		<item>2011</item>
		<item>2012</item>
		<item>2013</item>
		<item>2014</item>
		<item>2015</item>
		<item>2016</item>
		<item>2017</item>
		<item>2018</item>
	</string-array>
</resources>
<!-- filename: res/values/string_arrays.xml -->

Styles and Themes

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<style name="Button">
		<item name="android:background">@color/white_smoke_1</item>
		<item name="android:fontFamily">arial</item>
		<item name="android:textSize">10sp</item>
	</style>
	<style name="Button_1" parent="Button">
		<item name="android:textColor">@color/gray</item>
	</style>
	<style name="Checkbox">
		<item name="android:fontFamily">sans-serif</item>
		<item name="android:textSize">11sp</item>
	</style>
	<style name="H2">
		<item name="android:background">@color/dark_blue</item>
		<item name="android:fontFamily">tahoma</item>
		<item name="android:fontWeight">700</item>
		<item name="android:textColor">@color/white</item>
		<item name="android:textSize">12sp</item>
	</style>
	<style name="Label">
		<item name="android:fontFamily">arial</item>
		<item name="android:textSize">11sp</item>
	</style>
	<style name="Label_1" parent="Label">
		<item name="android:textStyle">italic</item>
	</style>
	<style name="Radio">
		<item name="android:fontFamily">sans-serif</item>
		<item name="android:textSize">11sp</item>
	</style>
	<style name="Select">
		<item name="android:fontFamily">arial</item>
		<item name="android:textSize">11sp</item>
	</style>
	<style name="Text">
		<item name="android:fontFamily">arial</item>
		<item name="android:textSize">13.33sp</item>
	</style>
</resources>
<!-- filename: res/values/styles.xml -->

Bundled Fonts

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
	<font android:fontStyle="italic" android:fontWeight="400" android:font="@font/arial_italic" />
	<font android:fontStyle="normal" android:fontWeight="400" android:font="@font/arial_normal" />
</font-family>
<!-- filename: res/font/arial.xml -->

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
	<font android:fontStyle="normal" android:fontWeight="700" android:font="@font/tahoma_bold" />
</font-family>
<!-- filename: res/font/tahoma.xml -->

Color Resources

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<color name="black">#000000</color>
	<color name="dark_blue">#00008B</color>
	<color name="gray">#808080</color>
	<color name="yellow_green">#9ACD32</color>
	<color name="dark_gray">#A9A9A9</color>
	<color name="light_gray_1">#CCCCCC</color>
	<color name="white_smoke_1">#DDDDDD</color>
	<color name="white">#FFFFFF</color>
</resources>
<!-- filename: res/values/colors.xml -->

Dimension Resources

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<dimen name="button_margin_start">4dp</dimen>
	<dimen name="button_margin_start_1">8dp</dimen>
	<dimen name="button_minheight">0dp</dimen>
	<dimen name="button_minwidth">0dp</dimen>
	<dimen name="button_padding_horizontal">6dp</dimen>
	<dimen name="button_padding_vertical">1dp</dimen>
	<dimen name="checkbox_margin_end">1dp</dimen>
	<dimen name="checkbox_margin_start">8dp</dimen>
	<dimen name="checkbox_margin_vertical">3dp</dimen>
	<dimen name="div_margin_start">4dp</dimen>
	<dimen name="div_width">500dp</dimen>
	<dimen name="form_padding_horizontal">10dp</dimen>
	<dimen name="form_padding_vertical">5dp</dimen>
	<dimen name="h2_padding">8dp</dimen>
	<dimen name="hr_height">1dp</dimen>
	<dimen name="hr_margin">10dp</dimen>
	<dimen name="label_margin_end">5dp</dimen>
	<dimen name="label_padding_top">3dp</dimen>
	<dimen name="label_width">70dp</dimen>
	<dimen name="radio_margin_end">1dp</dimen>
	<dimen name="radio_margin_start">5dp</dimen>
	<dimen name="radio_margin_start_1">9dp</dimen>
	<dimen name="radio_margin_top">3dp</dimen>
	<dimen name="select_constraintwidth_min">37dp</dimen>
	<dimen name="select_margin_start">4dp</dimen>
	<dimen name="select_margin_top">13dp</dimen>
	<dimen name="select_minwidth">37dp</dimen>
	<dimen name="select_padding_vertical">2dp</dimen>
	<dimen name="select_width">160dp</dimen>
	<dimen name="select_width_1">200dp</dimen>
	<dimen name="select_width_2">100dp</dimen>
	<dimen name="space_height">6dp</dimen>
	<dimen name="text_margin_end">5dp</dimen>
	<dimen name="text_padding_vertical">1dp</dimen>
	<dimen name="text_width">40dp</dimen>
	<dimen name="text_width_1">130dp</dimen>
	<dimen name="ul_padding_bottom">11dp</dimen>
	<dimen name="ul_padding_horizontal">5dp</dimen>
	<dimen name="ul_padding_top">5dp</dimen>
</resources>
<!-- filename: res/values/dimens.xml -->

Drawable Resources

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
	<stroke android:width="1dp" android:color="@color/yellow_green" />
	<solid android:color="@color/dark_blue" />
</shape>
<!-- filename: res/drawable/h2_textview_1.xml -->

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
	<stroke android:width="1dp" android:color="@color/light_gray_1" />
	<solid android:color="@color/white" />
</shape>
<!-- filename: res/drawable/form_entry.xml -->

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
	<stroke android:width="2dp" android:color="@color/black" />
</shape>
<!-- filename: res/drawable/text_order.xml -->

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
	<stroke android:width="1dp" android:color="@color/dark_gray" />
</shape>
<!-- filename: res/drawable/select_hour.xml -->

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
	<stroke android:width="2dp" android:color="@color/white_smoke_1" />
	<solid android:color="@color/white_smoke_1" />
</shape>
<!-- filename: res/drawable/button_button_1.xml -->

User Written HTML

Using excessive DIV and FORM tags are not required for mobile devices which can cause additional LinearLayouts to be auto-generated. Block level elements are always rendered in order to preserve any CSS which is applied to the tag.

https://www.w3.org/TR/html401/struct/global.html#h-7.5.3

If you plan on using this library it adheres to strict HTML validation rules regarding "block-level" and "inline" elements. Any HTML elements with free-form text might be collapsed into a TextView rather than a LinearLayout. Try to enclose everything inside an HTML container otherwise the text might be discarded.

RECOMMENDED

<div>
	<span>abcde</span>
	<span>fghij</span>
	<span>klmno</span>
</div>

NOT RECOMMENDED

<span>
	abcde
	<div>fghij</div>
	klmno
</span>

You can use the /demos/*.html files provided to preview some features of this library.

Keywords

FAQs

Package last updated on 04 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc