为您找到相关结果2,637,143个
Android ConstraintLayout约束布局使用详解_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" andro...
www.jb51.net/article/2663...htm 2022-11-1
Android Studio 实现九宫格功能_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 24 25 26 27 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <...
www.jb51.net/article/1857...htm 2025-2-9
Android实现记事本功能(26)_Android_脚本之家
android:textSize="13sp"/> </RelativeLayout> <ListView android:id="@+id/lv_content" android:layout_width="match_parent" android:layout_height="wrap_content"></ListView> </LinearLayout> activity_add_content.xml内容: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23...
www.jb51.net/article/1043...htm 2025-2-11
Android Studio实现简单的通讯录_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 package com.example.test; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.conten...
www.jb51.net/article/2107...htm 2025-1-31
Android中的深度链接技术实战_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 24 25 <activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTask"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent...
www.jb51.net/article/2418...htm 2025-2-4
Android软键盘遮挡的四种完美解决方案_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 <com.jereh.overidelinearlayout.LinearLayoutView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:id="@+...
www.jb51.net/article/947...htm 2025-2-8