Browse Source

修改焦点问题

桌面小炒机
liup 6 months ago
parent
commit
f7401a068e
6 changed files with 14 additions and 14 deletions
  1. +0
    -2
      app/src/main/res/layout/activity_log.xml
  2. +0
    -2
      app/src/main/res/layout/activity_order.xml
  3. +10
    -2
      app/src/main/res/layout/activity_system_set.xml
  4. +0
    -3
      app/src/main/res/layout/dialog/layout/dialog_rec_save_process.xml
  5. +2
    -3
      app/src/main/res/values/styles.xml
  6. +2
    -2
      build.gradle

+ 0
- 2
app/src/main/res/layout/activity_log.xml View File

@@ -185,8 +185,6 @@
android:layout_height="@dimen/dp_180"
android:layout_marginTop="@dimen/dp_10"
android:textColor="@color/white"
android:focusableInTouchMode="true"
android:focusable="true"
android:layout_alignParentEnd="true"
android:layout_marginEnd="@dimen/dp_10"
>


+ 0
- 2
app/src/main/res/layout/activity_order.xml View File

@@ -99,8 +99,6 @@
android:background="@drawable/bg_btn_login_selected"
android:text="查 询"
android:textColor="@color/white"
android:focusable="true"
android:focusableInTouchMode="true"
android:textSize="@dimen/sp_24" >
<requestFocus/>
</Button>


+ 10
- 2
app/src/main/res/layout/activity_system_set.xml View File

@@ -49,6 +49,16 @@
android:visibility="gone"
android:background="?attr/app_content_bg_color" />

<TextView
android:layout_width="1dp"
android:focusableInTouchMode="true"
android:focusable="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginTop="@dimen/dp_80"
android:layout_height="1dp">
<requestFocus/>
</TextView>
<RelativeLayout
android:id="@+id/rl_quanxian"
android:layout_gravity="top"
@@ -56,8 +66,6 @@
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
android:focusable="true"
android:clickable="true"
android:focusableInTouchMode="true"
android:background="#65000000">
<LinearLayout


+ 0
- 3
app/src/main/res/layout/dialog/layout/dialog_rec_save_process.xml View File

@@ -3,9 +3,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#7f000000"
android:focusable="true"
android:focusableInTouchMode="true"
android:clickable="true"
xmlns:app="http://schemas.android.com/apk/res-auto">

<LinearLayout


+ 2
- 3
app/src/main/res/values/styles.xml View File

@@ -43,12 +43,11 @@
<item name="qmui_dialog_message_content_style">@style/DialogTheme2MessageContentStyle</item>
<item name="qmui_dialog_menu_container_style">@style/DialogTheme2MenuContainerStyle</item>
<item name="qmui_dialog_menu_item_style">@style/DialogTheme2MenuItemStyle</item>
<item name="qmui_dialog_max_width">@dimen/dp_400</item>
<item name="qmui_dialog_min_width">@dimen/dp_600</item>
<item name="qmui_dialog_max_width">@dimen/dp_600</item>
<item name="qmui_dialog_min_width">@dimen/dp_400</item>
<item name="qmui_dialog_edit_content_style">@style/DialogTheme2ContentStyle</item>
<item name="android:windowAnimationStyle">@style/activityanim</item>


</style>

<style name="activityanim" parent="@android:style/Animation">


+ 2
- 2
build.gradle View File

@@ -35,8 +35,8 @@ task clean(type: Delete) {

ext { // 统一版本入口
//App版本号
versionCode = 206
versionName = "2.0.6"
versionCode = 207
versionName = "2.0.7"

// 支持Android版本
buildToolsVersion = "33.0.0"


Loading…
Cancel
Save