我目前正在开发一款安卓游戏。我的内容在片段中有问题。内容被切断,我找不到问题所在。我只使用资源目录,在这里定义不同的布局。这就是为什么我知道问题出在布局上。首先,我认为这与我使用android:layout_height="match_parent"的事实有关。我在stackoverflow上找到了这个解决方案,我希望这也能解决我的问题。但这对我毫无帮助。
我有activity_game.xml。在这里我有一个当前显示Fragment的占位符。内容如下:

<?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="wrap_content"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context="y.trader.com.rhcloud.blackmonster.games.tradery.activity.GameActivity">

  <FrameLayout
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

</RelativeLayout>

Fragment本身定义了以下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:gravity="center_horizontal">

  <TextView
    android:id="@+id/money"
    style="@style/traderY.TextCenter" />

  <TextView
    android:id="@+id/location"
    style="@style/traderY.TextCenter" />

  <ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/junkie_icon"/>

  <ListView
    android:id="@+id/drug_list"
    style="@style/traderY.List" />

  <TableRow
    style="@style/traderY.ButtonRow">

    <Button
        android:id="@+id/sell_drugs"
        style="@style/traderY.ButtonCenter"
        android:text="@string/sell"/>

    <Button
        android:id="@+id/nothing"
        style="@style/traderY.ButtonCenter"
        android:text="@string/nothing"/>

  </TableRow>

</LinearLayout>

这里是显示问题的截屏。
android -  fragment 内容被切断-LMLPHP
如你所见,最后两个按钮正在被剪掉。我希望避免这种情况,而是允许用户向下滚动。我正处于死亡的境地,我希望能得到任何帮助。我希望我能很好地解释这个问题,让大家理解。

最佳答案

不使用ScrollView,您可以为weight设置ListView。尝试此解决方案:

 <ListView
    ...
    android:layout_weight="1"/>

10-05 22:57
查看更多