Skip to content

Commit e90f6cc

Browse files
committed
Change ListView to fill parent and expand list item click area
1 parent a7a6a61 commit e90f6cc

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/AndroidClient/client/client.iml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@
8282
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
8383
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
8484
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
85+
<excludeFolder url="file://$MODULE_DIR$/build/poms" />
86+
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
87+
<excludeFolder url="file://$MODULE_DIR$/build/test-results" />
8588
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
8689
</content>
8790
<orderEntry type="jdk" jdkName="Android API 21 Platform" jdkType="Android SDK" />

src/AndroidClient/techstacks/src/main/res/layout/fragment_top_rated.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
tools:context=".MainActivity$TopRatedFragment">
88

99
<LinearLayout
10-
android:layout_width="wrap_content"
11-
android:layout_height="wrap_content"
10+
android:layout_width="fill_parent"
11+
android:layout_height="fill_parent"
1212
android:orientation="vertical">
1313

1414
<Spinner
@@ -19,8 +19,8 @@
1919

2020
<ListView
2121
android:id="@+id/listTopRated"
22-
android:layout_width="wrap_content"
23-
android:layout_height="wrap_content" />
22+
android:layout_width="fill_parent"
23+
android:layout_height="fill_parent" />
2424

2525
</LinearLayout>
2626

0 commit comments

Comments
 (0)