/res/layout/repository.xml
https://bitbucket.org/saibotd/bitbeaker/ · XML · 105 lines · 89 code · 16 blank · 0 comment · 0 complexity · ba346f6cb5ef8efbf31b2fcc61dccd7d MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:id="@+id/fork_status_row"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:paddingLeft="4dip"
- android:paddingTop="8dip"
- android:paddingRight="4dip"
- android:visibility="gone" >
- <TextView
- android:id="@+id/fork_of_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/nothing" >
- </TextView>
- <TextView
- android:id="@+id/fork_parent_owner"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/nothing" >
- </TextView>
-
- <TextView
- android:id="@+id/fork_parent_owner_project_separator"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/nothing" >
- </TextView>
-
- <TextView
- android:id="@+id/fork_parent_project"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/nothing" >
- </TextView>
-
- <TextView
- android:id="@+id/fork_parent_postfix"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/nothing" >
- </TextView>
-
- </LinearLayout>
-
- <TextView
- android:id="@+id/fork_parent_description"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingLeft="4dip"
- android:paddingRight="4dip"
- android:text="@string/nothing"
- android:textStyle="italic"
- android:visibility="gone" >
- </TextView>
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="4dip">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/repository_description"
- android:text="@string/nothing"
- android:layout_marginRight="42dip"
- android:autoLink="all"
- android:linksClickable="true">
- </TextView>
- <ImageView
- android:layout_gravity="right"
- android:id="@+id/icon"
- android:layout_height="32sp"
- android:layout_width="32sp">
- </ImageView>
- </FrameLayout>
- <android.support.v4.view.ViewPager
- android:id="@+id/pager"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <android.support.v4.view.PagerTabStrip
- android:id="@+id/pager_title_strip"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="top"
- android:background="@color/pager_title_strip_bg"
- android:textColor="@color/pager_title_strip_text"/>
- </android.support.v4.view.ViewPager>
- </LinearLayout>