Commit 0be9110b authored by Alfansyah Fadlian's avatar Alfansyah Fadlian

fixed scrollable layout

parents e5452852 d980f07e
...@@ -124,14 +124,5 @@ public class LoginActivity extends AppCompatActivity { ...@@ -124,14 +124,5 @@ public class LoginActivity extends AppCompatActivity {
registerState.show(getSupportFragmentManager(),registerState.getTag()); registerState.show(getSupportFragmentManager(),registerState.getTag());
} }
}); });
/**dilanjutkan nanti**/
// tvForgotPassword.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// startActivity(new Intent(LoginActivity.this, ForgotPasswordActivity.class));
// }
// });
} }
} }
...@@ -26,6 +26,12 @@ ...@@ -26,6 +26,12 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@id/cvInvoice" android:layout_below="@id/cvInvoice"
android:layout_above="@id/btnPay" android:layout_above="@id/btnPay"
android:overScrollMode="never"
android:scrollingCache="false"
android:fadingEdge="none"
android:fadingEdgeLength="0dp"
android:scrollbars="none"
android:scrollbarStyle="insideOverlay"
> >
<RelativeLayout <RelativeLayout
...@@ -58,21 +64,15 @@ ...@@ -58,21 +64,15 @@
/> />
<ExpandableListView <androidx.recyclerview.widget.RecyclerView
android:layout_width="fill_parent" android:id="@+id/rvPayment"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/tvLabel"> android:layout_margin="10dp"
android:nestedScrollingEnabled="false"
<androidx.recyclerview.widget.RecyclerView tools:layout_editor_absoluteX="10dp"
android:id="@+id/rvPayment" android:layout_below="@id/tvLabel"
android:layout_width="match_parent" tools:listitem="@layout/payment_list"/>
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:nestedScrollingEnabled="false"
tools:layout_editor_absoluteX="10dp"
tools:listitem="@layout/payment_list"/>
</ExpandableListView>
</RelativeLayout> </RelativeLayout>
</ScrollView> </ScrollView>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment