Android Studio file structure

This commit is contained in:
2015-03-15 08:11:19 -04:00
parent 11d6bbd6f6
commit 1ff3c1c857
190 changed files with 1124 additions and 1036 deletions

View File

@@ -0,0 +1,47 @@
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
style="@style/cardsListStyle"
tools:context="org.isoron.uhabits.ShowHabitActivity">
<LinearLayout style="@style/cardStyle">
<TextView
android:id="@+id/tvOverview"
style="@style/cardHeaderStyle"
android:text="Overview" />
<LinearLayout style="@style/cardRowStyle">
<TextView
style="@style/cardLabelStyle"
android:text="Habit strength" />
<TextView
android:id="@+id/tvStrength"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />
</LinearLayout>
</LinearLayout>
<LinearLayout style="@style/cardStyle">
<TextView
android:id="@+id/tvHistory"
style="@style/cardHeaderStyle"
android:text="History" />
<LinearLayout
android:id="@+id/llHistory"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" />
</LinearLayout>
</LinearLayout>
</ScrollView>