make confirmation text views scrollable using rotary control
This commit is contained in:
parent
7b1e500659
commit
aaca8f18f8
2 changed files with 29 additions and 0 deletions
|
@ -7,11 +7,17 @@ import android.os.SystemClock;
|
||||||
import android.os.Vibrator;
|
import android.os.Vibrator;
|
||||||
import android.support.wearable.view.GridPagerAdapter;
|
import android.support.wearable.view.GridPagerAdapter;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MotionEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
import android.view.ViewConfiguration;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.core.view.InputDeviceCompat;
|
||||||
|
import androidx.core.view.MotionEventCompat;
|
||||||
|
import androidx.core.view.ViewConfigurationCompat;
|
||||||
|
|
||||||
import info.nightscout.androidaps.R;
|
import info.nightscout.androidaps.R;
|
||||||
import info.nightscout.androidaps.data.ListenerService;
|
import info.nightscout.androidaps.data.ListenerService;
|
||||||
|
|
||||||
|
@ -71,8 +77,28 @@ public class AcceptActivity extends ViewSelectorActivity {
|
||||||
if (col == 0) {
|
if (col == 0) {
|
||||||
final View view = LayoutInflater.from(getApplicationContext()).inflate(R.layout.action_confirm_text, container, false);
|
final View view = LayoutInflater.from(getApplicationContext()).inflate(R.layout.action_confirm_text, container, false);
|
||||||
final TextView textView = view.findViewById(R.id.message);
|
final TextView textView = view.findViewById(R.id.message);
|
||||||
|
final View scrollView = view.findViewById(R.id.message_scroll);
|
||||||
textView.setText(message);
|
textView.setText(message);
|
||||||
container.addView(view);
|
container.addView(view);
|
||||||
|
scrollView.setOnGenericMotionListener(new View.OnGenericMotionListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onGenericMotion(View v, MotionEvent ev) {
|
||||||
|
if (ev.getAction() == MotionEvent.ACTION_SCROLL &&
|
||||||
|
ev.isFromSource(InputDeviceCompat.SOURCE_ROTARY_ENCODER)
|
||||||
|
) {
|
||||||
|
float delta = -ev.getAxisValue(MotionEventCompat.AXIS_SCROLL) *
|
||||||
|
ViewConfigurationCompat.getScaledVerticalScrollFactor(
|
||||||
|
ViewConfiguration.get(container.getContext()),
|
||||||
|
container.getContext());
|
||||||
|
v.scrollBy(0, Math.round(delta));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
scrollView.requestFocus();
|
||||||
return view;
|
return view;
|
||||||
} else {
|
} else {
|
||||||
final View view = LayoutInflater.from(getApplicationContext()).inflate(R.layout.action_send_item, container, false);
|
final View view = LayoutInflater.from(getApplicationContext()).inflate(R.layout.action_send_item, container, false);
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
app:boxedEdges="all">
|
app:boxedEdges="all">
|
||||||
|
|
||||||
<androidx.core.widget.NestedScrollView
|
<androidx.core.widget.NestedScrollView
|
||||||
|
android:id="@+id/message_scroll"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
<TextView
|
<TextView
|
||||||
|
|
Loading…
Reference in a new issue