回転提案ボタン(下の画像の矢印)の消し方
詳しくは Android Open Source Project の 画面の回転の提案 を参照。
回転提案ボタンを非表示にするにはPCから
$ adb shell settings put secure show_rotation_suggestions 0
回転提案ボタンを表示する(元の設定に戻す)には、デフォルトではshow_rotation_suggestionsというキーはないので
$ adb shell settings delete secure show_rotation_suggestions
でキーを削除するか
$ adb shell settings put secure show_rotation_suggestions 1
で値を1にする。