Skip to content

Instantly share code, notes, and snippets.

@scruffyfox
Created July 15, 2014 10:15
Show Gist options
  • Save scruffyfox/83b526305183e465e3b8 to your computer and use it in GitHub Desktop.
Save scruffyfox/83b526305183e465e3b8 to your computer and use it in GitHub Desktop.
Android XML pre-processor
xmlns:android="http://schemas.android.com/apk/res/android"

%ScrollView
{
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  
  %LinearLayout 
  {
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    
    %ImageView
    {
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/some_id"
    }
    
    %ImageView
    {
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment