这是我想要做的图片
我真的不关心<中的元素> (我知道如何声明它们),我只想组织红色和蓝色标签不要碰撞自己(比如蓝色在红色之上,所以我不能显示红色的一个)。我曾经使用C#UI desinger或CPP,所以这对我来说很新,我只是一个初学者:(
我目前的UI代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MyActivity">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="fill_parent">
<ListView
android:layout_width="match_parent"
android:layout_height="431dp"
android:id="@+id/listView" />
</FrameLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/editText2"
android:text="SEARCH BOX" />
</LinearLayout>
我遇到了一些渲染问题。
答案 0 :(得分:0)
您应该使用布局权重来实现此目的。
这样的事情:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MyActivity">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:text="SEARCH BOX" />
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/listView" />
</LinearLayout>