RK3288 android5.1设置系统按键坐标值

frameworks\base\packages\SystemUI\res\layout\navigation_bar.xml

84.

                            android:layout_width="70dp"
                android:layout_height="match_parent"
                android:src="@drawable/capture"
                android:layout_marginRight="0dp"
                android:layout_marginStart="2dp"
                   android:layout_weight="0"
                android:visibility="invisible"
                   android:contentDescription="@string/accessibility_recent"
             />
                            android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                />
                            android:id="@+id/sub"
                android:layout_width="78dp"
                android:layout_height="match_parent"
                android:layout_weight="0"
                android:contentDescription="@string/accessibility_recent"
                android:paddingLeft="0dp"
                android:paddingRight="0dp"
                android:src="@drawable/sub_normal"
                android:visibility="invisible"
                systemui:keyCode="25"
                />
                            android:layout_width="78dp"
                android:layout_height="match_parent"
                android:paddingStart="20dp" 
                android:paddingEnd="20dp"
                android:src="@drawable/ic_sysbar_back"
                android:scaleType="centerInside"
                systemui:keyCode="4"
                android:layout_weight="0"
                android:contentDescription="@string/accessibility_back"
                />
           
                            android:layout_width="78dp"
                android:layout_height="match_parent"
                android:paddingStart="20dp" 
                android:paddingEnd="20dp"
                android:src="@drawable/ic_sysbar_home"
                android:scaleType="centerInside"
                systemui:keyCode="3"
                systemui:keyRepeat="false"
                android:layout_weight="0"
                android:contentDescription="@string/accessibility_home"
                />
           
                            android:layout_width="77dp"
                android:layout_height="match_parent"
                android:paddingStart="20dp" 
                android:paddingEnd="20dp"
                android:src="@drawable/ic_sysbar_recent"
                android:scaleType="centerInside"
                android:layout_weight="0"
                android:contentDescription="@string/accessibility_recent"
                />
                              android:id="@+id/add"
                 android:layout_width="79dp"
                 android:layout_height="match_parent"
                 android:layout_weight="0"
                 android:contentDescription="@string/accessibility_recent"
                 android:paddingLeft="0dp"
                 android:paddingRight="0dp"
                 android:src="@drawable/add_normal"
                 android:visibility="invisible"
                 systemui:keyCode="24"
                 />
                              android:id="@+id/displaycopy"
                android:layout_width="75dp"
                android:layout_height="match_parent"
                android:layout_weight="0"
                android:contentDescription="@string/accessibility_recent"
                android:paddingLeft="0dp"
                android:paddingRight="0dp"
                android:scaleType="centerInside"
                android:src="@drawable/display_copy"
                android:visibility="invisible"
                />
                            android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                />
                            android:layout_width="83dp"
                android:layout_height="match_parent"
                android:layout_weight="0" >
                                    android:id="@+id/menu"
                    android:layout_width="80dp"
                    android:layout_height="match_parent"
                    android:layout_marginEnd="2dp"
                    android:contentDescription="@string/accessibility_menu"
                    android:src="@drawable/ic_sysbar_menu"
                android:scaleType="centerInside"
                    android:visibility="invisible"
                    systemui:keyCode="82" />

                                    android:id="@+id/ime_switcher"
                    android:layout_width="@dimen/navigation_extra_key_width"
                    android:layout_height="match_parent"
                    android:contentDescription="@string/accessibility_ime_switch_button"
                    android:scaleType="centerInside"
                    android:src="@drawable/ic_ime_switcher_default"
                    android:visibility="invisible" />
           
                            android:layout_width="30dp"
                android:layout_height="match_parent"
                android:layout_weight="0"
                android:visibility="invisible"
                />
       

android:layout_width="75dp"设置坐标位置

你可能感兴趣的:(RK3288 android5.1设置系统按键坐标值)