Replace fill_parent with match_parent

This commit is contained in:
veyndan 2017-02-25 22:34:05 +00:00
parent f5892ca34b
commit 62b434af35
18 changed files with 61 additions and 61 deletions

View file

@ -6,15 +6,15 @@
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="fill_parent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
/>
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>