Threw in TACNET and config stuff, added gson dependency

This commit is contained in:
2020-06-20 11:50:57 -05:00
parent 2e51cec6d1
commit b7882444f6
14 changed files with 1185 additions and 9 deletions

View File

@@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
<shape android:shape="oval">
<shape android:shape="rectangle">
<solid android:color="@color/navigationButtonSelected" />
</shape>
</item>
<item android:state_hovered="true">
<shape android:shape="oval">
<shape android:shape="rectangle">
<solid android:color="@color/navigationButtonHover" />
</shape>
</item>
<item android:state_pressed="true">
<shape android:shape="oval">
<shape android:shape="rectangle">
<solid android:color="@color/navigationButtonActive" />
</shape>
</item>
<item>
<shape android:shape="oval">
<shape android:shape="rectangle">
<solid android:color="@color/navigationButton" />
</shape>
</item>

View File

@@ -31,11 +31,14 @@
android:src="@drawable/search" />
</LinearLayout>
<LinearLayout
android:id="@+id/search_results"
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="match_parent">
</LinearLayout>
<LinearLayout
android:id="@+id/search_results"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>
</LinearLayout>