元素不在片段XML中的位置

时间:2017-05-09 13:09:08

标签: java android xml android-fragments

fragment_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/movies_fragment_ll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MoviesFragment">

    <ListView
        android:id="@+id/lvMovies"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#efefef"
        android:layout_weight="100"/>

    <Button
        android:id="@+id/bLoadData"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Load api data"
        android:layout_weight="1"/>

</LinearLayout>

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <include layout="@layout/fragment_main"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>

</LinearLayout>
来自MainActivity.java的

onCreate

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .replace(R.id.movies_fragment_ll, new MoviesFragment())
                .commit();
    }
}

{{0}}

正如您从屏幕截图中看到的那样,代码用于显示左侧的内容,但它实际显示的内容是不同的。我试图使用XML和java,但它一直在这样做。在某些情况下,根据我在屏幕上排列ListView和Button的方式,我有时会得到两个按钮而不是一个。

为什么?

清除混乱。 数据正被添加到ListView。 点击按钮即可添加数据。

但在单击按钮之前,数据将添加到ListView。

如何使ListView高度完成,按钮从底部开始。使布局看起来像XML预览中的布局。

3 个答案:

答案 0 :(得分:1)

android预览显示带有child的列表。但是在运行时,您没有在列表视图中添加任何元素,因此列表视图为空。在这种情况下,你的按钮会向上移动。

如果你想让你的按钮坚持使用相对布局。

   <?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:id="@+id/movies_fragment_ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MoviesFragment">


  <Button
    android:id="@+id/bLoadData"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Load api data"
    />
<ListView
    android:id="@+id/lvMovies"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#efefef"
    android:layout_above="@id/bLoadData"
    android:layout_weight="100"/>

    </RelativeLayout>

答案 1 :(得分:0)

如果您在该列表中没有任何数据,则该列表将不可见。因此,为什么按钮将显示在顶部,因为listview的高度将为0。

将一些数据设置到列表中,并使用相对布局来管理底部按钮的位置

答案 2 :(得分:0)

好好改变它,并且请将一些数据添加到适配器

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/movies_fragment_ll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MoviesFragment">

    <ListView
        android:id="@+id/lvMovies"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:background="#efefef"
        android:layout_weight="100"/>

    <Button
        android:id="@+id/bLoadData"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Load api data"
        android:layout_weight="1"/>

</LinearLayout>