Commit b93d9cda9cf1619116d790348f9bc3146c6d0ee2

Authored by Imanol-Mikel Barba Sabariego
1 parent 054f768d

Absolute layout

gen/com/upc/pbe/upcnews/R.java 0 → 100644
  1 +/* AUTO-GENERATED FILE. DO NOT MODIFY.
  2 + *
  3 + * This class was automatically generated by the
  4 + * aapt tool from the resource data it found. It
  5 + * should not be modified by hand.
  6 + */
  7 +
  8 +package com.upc.pbe.upcnews;
  9 +
  10 +public final class R {
  11 + public static final class attr {
  12 + }
  13 + public static final class color {
  14 + public static final int backgroundmain=0x7f050000;
  15 + }
  16 + public static final class dimen {
  17 + public static final int TitleSize=0x7f060000;
  18 + }
  19 + public static final class drawable {
  20 + public static final int ic_action_search=0x7f020000;
  21 + public static final int ic_launcher=0x7f020001;
  22 + public static final int ic_ledarklogo=0x7f020002;
  23 + public static final int ic_menu_name=0x7f020003;
  24 + public static final int ic_startbutton=0x7f020004;
  25 + public static final int startbuttontoggle=0x7f020005;
  26 + }
  27 + public static final class id {
  28 + public static final int AbsoluteLayout1=0x7f0a0006;
  29 + public static final int LinearLayout1=0x7f0a0001;
  30 + public static final int button=0x7f0a0008;
  31 + public static final int itemhelp=0x7f0a000c;
  32 + public static final int itemprefs=0x7f0a000b;
  33 + public static final int listView1=0x7f0a0003;
  34 + public static final int menu_settings=0x7f0a000a;
  35 + public static final int rowTextView=0x7f0a0009;
  36 + public static final int textView1=0x7f0a0004;
  37 + public static final int textView2=0x7f0a0005;
  38 + public static final int textViewTitle=0x7f0a0002;
  39 + public static final int textViewXml=0x7f0a0007;
  40 + public static final int videoView1=0x7f0a0000;
  41 + }
  42 + public static final class layout {
  43 + public static final int activity_video=0x7f030000;
  44 + public static final int dirs=0x7f030001;
  45 + public static final int help=0x7f030002;
  46 + public static final int main_activity=0x7f030003;
  47 + public static final int rowlayout=0x7f030004;
  48 + }
  49 + public static final class menu {
  50 + public static final int activity_main=0x7f090000;
  51 + public static final int activity_video=0x7f090001;
  52 + public static final int menu=0x7f090002;
  53 + }
  54 + public static final class string {
  55 + public static final int app_name=0x7f070000;
  56 + public static final int button=0x7f07000c;
  57 + public static final int button1=0x7f07000d;
  58 + public static final int desc=0x7f070009;
  59 + public static final int descarregar=0x7f070003;
  60 + public static final int dir=0x7f07000a;
  61 + public static final int directoris=0x7f07000b;
  62 + public static final int hello_world=0x7f070010;
  63 + public static final int help=0x7f070008;
  64 + public static final int hint=0x7f070004;
  65 + public static final int menu_settings=0x7f070001;
  66 + public static final int prefs=0x7f070007;
  67 + public static final int startbuttondescription=0x7f07000f;
  68 + public static final int title=0x7f07000e;
  69 + public static final int title_activity_main=0x7f070002;
  70 + public static final int title_activity_video=0x7f070011;
  71 + public static final int url=0x7f070005;
  72 + public static final int urlhint=0x7f070006;
  73 + }
  74 + public static final class style {
  75 + public static final int AppTheme=0x7f080000;
  76 + }
  77 + public static final class xml {
  78 + public static final int prefs=0x7f040000;
  79 + }
  80 +}
... ...
res/layout/main_activity.xml 0 → 100644
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3 + xmlns:tools="http://schemas.android.com/tools"
  4 + android:id="@+id/RelativeLayout1"
  5 + android:layout_width="fill_parent"
  6 + android:layout_height="fill_parent"
  7 + android:background="@color/backgroundmain"
  8 + android:focusable="true"
  9 + android:focusableInTouchMode="true"
  10 + tools:ignore="Deprecated" >
  11 +
  12 + <ImageButton
  13 + android:id="@+id/button"
  14 + android:layout_width="256dp"
  15 + android:layout_height="256dp"
  16 + android:layout_centerHorizontal="true"
  17 + android:layout_centerVertical="true"
  18 + android:background="@drawable/startbuttontoggle"
  19 + android:contentDescription="@string/startbuttondescription"
  20 + android:focusableInTouchMode="true" />
  21 +
  22 + <TextView
  23 + android:id="@+id/textViewXml"
  24 + android:layout_width="wrap_content"
  25 + android:layout_height="wrap_content"
  26 + android:layout_alignParentBottom="true"
  27 + android:layout_centerHorizontal="true"
  28 + android:layout_marginBottom="51dp"
  29 + android:gravity="clip_vertical"
  30 + android:hint="@string/hint"
  31 + android:scrollbarStyle="insideInset"
  32 + android:scrollbars="vertical" />
  33 +
  34 +</RelativeLayout>
0 35 \ No newline at end of file
... ...