Maxgmer Asked:2020-10-05 23:24:44 +0800 CST2020-10-05 23:24:44 +0800 CST 2020-10-05 23:24:44 +0800 CST 像 vk 中的 EditText 772 如何在创建帖子时使用与 vk 应用程序中的按钮相同的条带?当键盘被拉出时,这个面板仍然需要升起,以便它始终可见。 android 1 个回答 Voted Best Answer user194625 2020-10-05T23:39:55+08:002020-10-05T23:39:55+08:00 EditText将它拉伸到屏幕的宽度和长度,下方将有一个带有 5 的蓝色面板,ImageView如屏幕截图所示。更改图片,替换为ImageButton,这就是您的幸福。标签Space必须放在所有view需要对齐的标签之间。 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_height="match_parent" android:layout_width="match_parent"> <EditText android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:text="Df" android:gravity="top|left" android:padding="10dp" android:background="#FFFFFF" android:textColor="#000000"/> <LinearLayout android:gravity="bottom" android:layout_width="match_parent" android:background="#0953AE" android:layout_centerVertical="true" android:layout_height="60dp"> <ImageView android:layout_height="match_parent" android:layout_width="wrap_content" android:src="@drawable/ic_launcher"/> <Space android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1"/> <ImageView android:layout_height="match_parent" android:layout_width="wrap_content" android:src="@drawable/ic_launcher"/> <Space android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1"/> <ImageView android:layout_height="match_parent" android:layout_width="wrap_content" android:src="@drawable/ic_launcher"/> <Space android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1"/> <ImageView android:layout_height="match_parent" android:layout_width="wrap_content" android:src="@drawable/ic_launcher"/> <Space android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1"/> <ImageView android:layout_height="match_parent" android:layout_width="wrap_content" android:src="@drawable/ic_launcher"/> </LinearLayout> </LinearLayout> 来吧,标记你Activity的AndroidManifest android:windowSoftInputMode="adjustResize"
EditText
将它拉伸到屏幕的宽度和长度,下方将有一个带有 5 的蓝色面板,ImageView
如屏幕截图所示。更改图片,替换为ImageButton
,这就是您的幸福。标签Space
必须放在所有view
需要对齐的标签之间。来吧,标记你
Activity
的AndroidManifest