如何在LinearLayout中使用edittext在set按钮下列出视图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在LinearLayout中使用edittext在set按钮下列出视图相关的知识,希望对你有一定的参考价值。
我想在LinearLayout中设计一个布局。我的目的是;设置一个ListView完整layout_width。 ListView会结束其他人的身高。之后;有一个EditText和一个按钮。 EditText是layout_width 4/3按钮。 4/1。我怎么能这样做?
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/colorAccent">
<ListView
android:layout_width="match_parent"
android:layout_height="500dp"
android:id="@+id/mesajlaşma_listview"
>
</ListView>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="match_parent"
android:background="#FFFFFF"
>
<EditText
android:id="@+id/EditText01"
android:hint="Mesaj Yaz."
android:layout_height="40dp"
android:layout_weight="1"
android:layout_gravity="bottom"
android:background="#FFFFFF"
android:layout_width="fill_parent">
</EditText>
<Button
android:text="Gönder."
android:layout_gravity="bottom"
android:background="#FFFFFF"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="match_parent">
</Button>
/>
</LinearLayout>
</LinearLayout>
答案
首先在LinearLayout中创建Button和EditText,然后创建一个ListView并让它填充屏幕的剩余空间。
以上是关于如何在LinearLayout中使用edittext在set按钮下列出视图的主要内容,如果未能解决你的问题,请参考以下文章
Android中EditTex焦点设置和弹不弹出输入法的问题
如何在特定的 LinearLayout 中添加 Canvas?
如何在LinearLayout中使用edittext在set按钮下列出视图