Added Recycler List
This commit is contained in:
parent
8104b286d3
commit
22fe5a0fdc
9 changed files with 134 additions and 7 deletions
12
app/src/main/res/layout/codeview.xml
Normal file
12
app/src/main/res/layout/codeview.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="5dp"
|
||||
android:layout_height="64dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/codefield"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/hello_world"
|
||||
android:gravity="center_vertical"/>
|
||||
</FrameLayout>
|
13
app/src/main/res/layout/fragment_written_morse_list.xml
Normal file
13
app/src/main/res/layout/fragment_written_morse_list.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="top"
|
||||
android:orientation="vertical"
|
||||
android:scrollbars="vertical">
|
||||
|
||||
<android.support.v7.widget.RecyclerView
|
||||
android:id="@+id/wm_recycler"
|
||||
android:background="@color/white"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
</LinearLayout>
|
|
@ -57,4 +57,7 @@
|
|||
<!--Output Text Buttons-->
|
||||
<string name="button_share">SHARE</string>
|
||||
<string name="button_copy">COPY</string>
|
||||
|
||||
<!-- TODO: Remove or change this placeholder text -->
|
||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
||||
</resources>
|
||||
|
|
Reference in a new issue