Some minor changes

This commit is contained in:
tom79 2019-12-18 14:09:31 +01:00
parent d929c870f9
commit 5d22c9c6eb
3 changed files with 6 additions and 2 deletions

View File

@ -63,6 +63,9 @@ public class IdentityProofsAdapter extends RecyclerView.Adapter {
});
holder.proof_name_network.setText(context.getString(R.string.verified_by, identityProof.getProvider(),Helper.shortDateToString(identityProof.getUpdated_at())));
holder.proof_container.setOnClickListener(v -> {
Helper.openBrowser(context, identityProof.getProfile_url());
});
holder.proof_name_network.setOnClickListener(v -> {
Helper.openBrowser(context, identityProof.getProof_url());
});
}

View File

@ -4,6 +4,6 @@
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:fillColor="?iconColorMenu"
android:pathData="M8.59,16.34l4.58,-4.59 -4.58,-4.59L10,5.75l6,6 -6,6z" />
</vector>

View File

@ -68,6 +68,7 @@
android:src="@drawable/ic_keyboard_arrow_right"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
android:contentDescription="@string/identity_proofs" />
</androidx.constraintlayout.widget.ConstraintLayout>