mirror of
				https://github.com/topjohnwu/Magisk.git
				synced 2025-10-31 17:50:45 +00:00 
			
		
		
		
	Remote focus fixes (classic UI)
This commit is contained in:
		| @@ -59,6 +59,8 @@ | ||||
|             android:layout_gravity="bottom|center_horizontal" | ||||
|             android:layout_margin="@dimen/fab_padding" | ||||
|             android:onClick="@{() -> viewModel.fabPressed()}" | ||||
|             android:focusable="true" | ||||
|             android:clickable="true" | ||||
|             app:fabSize="normal" | ||||
|             app:layout_behavior="com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior" | ||||
|             app:srcCompat="@drawable/ic_add" /> | ||||
|   | ||||
| @@ -16,6 +16,7 @@ | ||||
|     </data> | ||||
|  | ||||
|     <TextView | ||||
|         android:focusable="true" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:fontFamily="monospace" | ||||
|   | ||||
| @@ -94,6 +94,8 @@ | ||||
|  | ||||
|             <androidx.appcompat.widget.AppCompatImageView | ||||
|                 android:id="@+id/hide_app_checkbox" | ||||
|                 android:focusable="true" | ||||
|                 android:clickable="true" | ||||
|                 style="@style/Widget.Icon" | ||||
|                 isChecked="@{item.isHiddenState}" | ||||
|                 android:onClick="@{() -> item.toggle()}" | ||||
|   | ||||
| @@ -38,6 +38,8 @@ | ||||
|  | ||||
|         <androidx.appcompat.widget.AppCompatImageView | ||||
|             android:id="@+id/hide_process_icon" | ||||
|             android:focusable="true" | ||||
|             android:clickable="true" | ||||
|             style="@style/Widget.Icon" | ||||
|             isChecked="@{item.isHidden}" | ||||
|             app:layout_constraintBottom_toBottomOf="parent" | ||||
|   | ||||
| @@ -106,6 +106,8 @@ | ||||
|  | ||||
|             <androidx.appcompat.widget.AppCompatImageView | ||||
|                 android:id="@+id/checkbox" | ||||
|                 android:focusable="true" | ||||
|                 android:clickable="true" | ||||
|                 style="@style/Widget.Icon" | ||||
|                 isChecked="@{item.isChecked}" | ||||
|                 android:layout_marginEnd="@dimen/margin_generic" | ||||
| @@ -127,6 +129,8 @@ | ||||
|  | ||||
|             <androidx.appcompat.widget.AppCompatImageView | ||||
|                 android:id="@+id/delete" | ||||
|                 android:focusable="true" | ||||
|                 android:clickable="true" | ||||
|                 style="@style/Widget.Icon" | ||||
|                 srcCompat="@{item.isDeletable ? R.drawable.ic_undelete : R.drawable.ic_delete}" | ||||
|                 android:onClick="@{() -> item.toggleDelete()}" | ||||
|   | ||||
| @@ -29,6 +29,7 @@ | ||||
|                 items="@{item.items}" | ||||
|                 scrollPosition="@={viewModel.scrollPosition}" | ||||
|                 scrollPositionSmooth="@{true}" | ||||
|                 android:focusable="true" | ||||
|                 android:layout_width="wrap_content" | ||||
|                 android:layout_height="match_parent" | ||||
|                 android:orientation="vertical" | ||||
| @@ -39,6 +40,8 @@ | ||||
|  | ||||
|         <com.google.android.material.floatingactionbutton.FloatingActionButton | ||||
|             hide="@{viewModel.scrollPosition == item.items.size - 1 || item.items.size == 0}" | ||||
|             android:focusable="true" | ||||
|             android:clickable="true" | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:layout_gravity="bottom|end" | ||||
|   | ||||
| @@ -105,6 +105,8 @@ | ||||
|  | ||||
|             <androidx.appcompat.widget.AppCompatImageView | ||||
|                 android:id="@+id/download" | ||||
|                 android:focusable="true" | ||||
|                 android:clickable="true" | ||||
|                 style="@style/Widget.Icon" | ||||
|                 isEnabled="@{viewModel.isConnected}" | ||||
|                 android:alpha="@{viewModel.isConnected ? 1f : .2f}" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 nikk gitanes
					nikk gitanes