mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-18 05:39:53 +01:00
address reviews
This commit is contained in:
@@ -144,7 +144,7 @@ public class KeyAgreementFragment extends BaseEventFragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void toggleFullscreen(boolean fullscreen) {
|
public void setFullscreen(boolean fullscreen) {
|
||||||
LinearLayout.LayoutParams statusParams, qrCodeParams;
|
LinearLayout.LayoutParams statusParams, qrCodeParams;
|
||||||
if (fullscreen) {
|
if (fullscreen) {
|
||||||
// Grow the QR code view to fill its parent
|
// Grow the QR code view to fill its parent
|
||||||
@@ -278,6 +278,11 @@ public class KeyAgreementFragment extends BaseEventFragment
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void keyAgreementWaiting() {
|
||||||
|
runOnUiThreadUnlessDestroyed(
|
||||||
|
() -> status.setText(R.string.waiting_for_contact_to_scan));
|
||||||
|
}
|
||||||
|
|
||||||
private void keyAgreementStarted() {
|
private void keyAgreementStarted() {
|
||||||
runOnUiThreadUnlessDestroyed(() -> {
|
runOnUiThreadUnlessDestroyed(() -> {
|
||||||
qrCodeView.setVisibility(INVISIBLE);
|
qrCodeView.setVisibility(INVISIBLE);
|
||||||
@@ -286,11 +291,6 @@ public class KeyAgreementFragment extends BaseEventFragment
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void keyAgreementWaiting() {
|
|
||||||
runOnUiThreadUnlessDestroyed(
|
|
||||||
() -> status.setText(R.string.waiting_for_contact_to_scan));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void keyAgreementAborted(boolean remoteAborted) {
|
private void keyAgreementAborted(boolean remoteAborted) {
|
||||||
runOnUiThreadUnlessDestroyed(() -> {
|
runOnUiThreadUnlessDestroyed(() -> {
|
||||||
reset();
|
reset();
|
||||||
|
|||||||
@@ -15,47 +15,49 @@ import org.briarproject.briar.R;
|
|||||||
|
|
||||||
public class QrCodeView extends FrameLayout {
|
public class QrCodeView extends FrameLayout {
|
||||||
|
|
||||||
private final ImageView qrCodeImageView;
|
private final ImageView qrCodeImageView;
|
||||||
private boolean fullscreen = false;
|
private boolean fullscreen = false;
|
||||||
private FullscreenListener listener;
|
private FullscreenListener listener;
|
||||||
|
|
||||||
public QrCodeView(@NonNull Context context,
|
public QrCodeView(@NonNull Context context,
|
||||||
@Nullable AttributeSet attrs) {
|
@Nullable AttributeSet attrs) {
|
||||||
super(context, attrs);
|
super(context, attrs);
|
||||||
LayoutInflater inflater = (LayoutInflater) context
|
LayoutInflater inflater = (LayoutInflater) context
|
||||||
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||||||
inflater.inflate(R.layout.qr_code_view, this, true);
|
inflater.inflate(R.layout.qr_code_view, this, true);
|
||||||
qrCodeImageView = findViewById(R.id.qr_code);
|
qrCodeImageView = findViewById(R.id.qr_code);
|
||||||
ImageView fullscreenButton = findViewById(R.id.fullscreen_button);
|
ImageView fullscreenButton = findViewById(R.id.fullscreen_button);
|
||||||
fullscreenButton.setOnClickListener(v -> {
|
fullscreenButton.setOnClickListener(v -> {
|
||||||
fullscreen = !fullscreen;
|
fullscreen = !fullscreen;
|
||||||
if (!fullscreen)
|
if (!fullscreen) {
|
||||||
fullscreenButton.setImageResource(
|
fullscreenButton.setImageResource(
|
||||||
R.drawable.ic_fullscreen_black_48dp);
|
R.drawable.ic_fullscreen_black_48dp);
|
||||||
else
|
} else {
|
||||||
fullscreenButton.setImageResource(
|
fullscreenButton.setImageResource(
|
||||||
R.drawable.ic_fullscreen_exit_black_48dp);
|
R.drawable.ic_fullscreen_exit_black_48dp);
|
||||||
if (listener != null)
|
}
|
||||||
listener.toggleFullscreen(fullscreen);
|
if (listener != null)
|
||||||
}
|
listener.setFullscreen(fullscreen);
|
||||||
);
|
}
|
||||||
}
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public void setQrCode(Bitmap qrCode) {
|
@UiThread
|
||||||
qrCodeImageView.setImageBitmap(qrCode);
|
public void setQrCode(Bitmap qrCode) {
|
||||||
// Simple fade-in animation
|
qrCodeImageView.setImageBitmap(qrCode);
|
||||||
AlphaAnimation anim = new AlphaAnimation(0.0f, 1.0f);
|
// Simple fade-in animation
|
||||||
anim.setDuration(200);
|
AlphaAnimation anim = new AlphaAnimation(0.0f, 1.0f);
|
||||||
qrCodeImageView.startAnimation(anim);
|
anim.setDuration(200);
|
||||||
}
|
qrCodeImageView.startAnimation(anim);
|
||||||
|
}
|
||||||
|
|
||||||
@UiThread
|
@UiThread
|
||||||
public void setFullscreenListener(FullscreenListener listener) {
|
public void setFullscreenListener(FullscreenListener listener) {
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface FullscreenListener {
|
public interface FullscreenListener {
|
||||||
void toggleFullscreen(boolean isFullscreen);
|
void setFullscreen(boolean fullscreen);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
tools:showIn="@layout/list_item_forum">
|
tools:showIn="@layout/fragment_keyagreement_qr">
|
||||||
|
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
style="?android:attr/progressBarStyleLarge"
|
style="?android:attr/progressBarStyleLarge"
|
||||||
@@ -20,12 +20,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:contentDescription="@string/qr_code"
|
android:contentDescription="@string/qr_code"
|
||||||
android:scaleType="fitCenter"
|
android:scaleType="fitCenter"/>
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
|
||||||
tools:src="@drawable/startup_lock"/>
|
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/fullscreen_button"
|
android:id="@+id/fullscreen_button"
|
||||||
@@ -39,5 +34,6 @@
|
|||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintRight_toRightOf="parent"/>
|
app:layout_constraintRight_toRightOf="parent"/>
|
||||||
|
|
||||||
</android.support.constraint.ConstraintLayout>
|
</android.support.constraint.ConstraintLayout>
|
||||||
</merge>
|
</merge>
|
||||||
|
|||||||
Reference in New Issue
Block a user