我目前正在开发Android游戏。我在Fragment中的内容有问题。内容被切断,我无法找到问题。我只使用资源目录,在那里我定义了不同的布局。这就是为什么我知道问题在于布局。首先,我认为它与我使用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>
这是捕获的屏幕以显示问题。
如您所见,最后两个按钮正在切割。我想避免这种情况,而是让用户向下滚动。我处于一种死亡状态,我将不胜感激。而且我希望我设法解释这个问题,以便理解。
答案 0 :(得分:1)
不使用ScrollView
,您可以为weight
设置ListView
。试试这个解决方案:
<ListView
...
android:layout_weight="1"/>
答案 1 :(得分:0)
您应该将片段布局包装在Scrollview中以启用滚动:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<!-- your layout here -->
</ScrollView>
您可以在此处查看正在使用的示例:Android ScrollView Example
答案 2 :(得分:0)
你应该让你的父容器高度为match_parent
<?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="match_parent"
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>
答案 3 :(得分:0)
我会避免将整个布局包装在ScrollView中,因为它包含ListView并且应该避免嵌套的滚动视图。相反,如果您希望按钮显示在列表的底部,则可以将它们作为ListView中的最后一个列表项。您必须覆盖适配器中的getItemViewType(int position)
和getViewTypeCount()
才能执行此操作。
另一个解决方案是将ListView和TableView放在RelativeLayout中,然后在最后声明TableView,将按钮放在ListView的顶部。
答案 4 :(得分:0)
如果您的布局已经包含listview,那么将父布局应用为scrollview不是一个好习惯。但是,如果您仍想使用它,则可以动态设置列表视图的高度,以便在不滚动的情况下使其所有项目可见。你可以通过使用这个小代码来实现这个目标
public static void setListViewHeightBasedOnChildren(final ListView listView) {
listView.post(new Runnable() {
@Override
public void run() {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = listView.getPaddingTop() + listView.getPaddingBottom();
int listWidth = listView.getMeasuredWidth();
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(
View.MeasureSpec.makeMeasureSpec(listWidth, View.MeasureSpec.EXACTLY),
View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
totalHeight += listItem.getMeasuredHeight();
Log.d("listItemHeight " + listItem.getMeasuredHeight(), "********");
}
Log.d("totalHeight " + totalHeight, "********");
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = (int) ((totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1))));
listView.setLayoutParams(params);
listView.requestLayout();
}
});
}
只需将ListView Id传递给此方法,它就会动态设置listview高度。然后你可以毫无问题地使用scrollview,并根据你的需要滚动整个内容。
用法:
ListView yourListView = (ListView) findViewById(R.id.your_list_view);
YourListViewAdapter adapter = new YourListViewAdapter();
yourListView.setAdapter(adapter);
//set height here
setListViewHeightBasedOnChildren(yourListView);
希望它有所帮助。快乐编码:)