blob: 642633aea7f193ce969429eb2deca41c8a4a46a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".FeedFragment" >
<TextView
android:id="@+id/feed_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/greeting" />
</ScrollView>
|