Commit c3b1070b authored by d8ahazard's avatar d8ahazard

Merge remote-tracking branch 'refs/remotes/origin/master' into digitalhigh_automount

Woop woop
parents c992b89b 20db2162
...@@ -70,6 +70,8 @@ public class ModulesFragment extends Fragment { ...@@ -70,6 +70,8 @@ public class ModulesFragment extends Fragment {
intent.setAction(Intent.ACTION_GET_CONTENT); intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent,FILE_SELECT_CODE); startActivityForResult(intent,FILE_SELECT_CODE);
} }
}); });
} }
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:id="@+id/main_content"
android:layout_height="match_parent" android:layout_width="match_parent"
android:layout_marginTop="?attr/actionBarSize" android:layout_height="match_parent">
android:orientation="vertical">
<RelativeLayout
<android.support.design.widget.TabLayout android:layout_width="fill_parent"
android:id="@+id/tab_layout" android:layout_height="wrap_content">
android:layout_width="match_parent"
android:layout_height="wrap_content" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?attr/colorPrimary" xmlns:app="http://schemas.android.com/apk/res-auto"
android:elevation="4dp" android:id="@+id/llayout"
android:minHeight="?attr/actionBarSize" android:layout_width="match_parent"
app:tabGravity="fill" android:layout_height="fill_parent"
app:tabIndicatorColor="?attr/colorAccent" android:layout_marginTop="?attr/actionBarSize"
app:tabMode="fixed" android:orientation="vertical">
app:tabTextAppearance="@style/TextAppearance.Design.Tab"/>
<android.support.design.widget.TabLayout
<ProgressBar android:id="@+id/tab_layout"
android:id="@+id/progressBar" android:layout_width="match_parent"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:background="?attr/colorPrimary"
android:layout_gravity="center"/> android:elevation="4dp"
android:minHeight="?attr/actionBarSize"
<android.support.v4.view.ViewPager app:tabGravity="fill"
android:id="@+id/pager" app:tabIndicatorColor="?attr/colorAccent"
android:layout_width="match_parent" app:tabMode="fixed"
android:layout_height="0dp" app:tabTextAppearance="@style/TextAppearance.Design.Tab" />
android:layout_weight="1"/>
<ProgressBar
<android.support.design.widget.FloatingActionButton android:id="@+id/progressBar"
android:id="@+id/fab" android:layout_width="wrap_content"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="center" />
android:layout_gravity="right"
android:layout_margin="16dp" <android.support.v4.view.ViewPager
android:clickable="true" android:id="@+id/pager"
android:src="@drawable/ic_add" android:layout_width="match_parent"
/> android:layout_height="match_parent"
android:animateLayoutChanges="true" />
</LinearLayout>
\ No newline at end of file
</LinearLayout>
<LinearLayout
android:id="@+id/ly_bar_bottom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center"
android:orientation="horizontal">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:baselineAlignBottom="false"
android:clickable="true"
android:src="@drawable/ic_add"
app:layout_anchorGravity="bottom|right|end"
/>
</LinearLayout>
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment