我一直在尝试在GraphView下面添加Button,所有这些元素都是Fragment的一部分。试过很多方法但没有一个正常工作。 这是Fragment(fragment_graph.xml)的布局文件。
<FrameLayout 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"
tools:context="com.nma.util.sdcardtrac.GraphFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/graph_fragment_layout"
android:orientation="vertical"
/>
</FrameLayout>
这是动态添加图形和按钮的Java代码,放在片段onViewCreated (View view, Bundle savedInstanceState)
中。
storageGraph = new LineGraphView(getActivity(), graphLabel);
storageGraph.addSeries(graphSeries); // More config calls follow
...
LinearLayout view = (LinearLayout)getView().findViewById(R.id.graph_fragment_layout);
Button button = new Button(getActivity());
button.setText("Test");
view.addView(storageGraph);
view.addView(button);
虽然我已经将包含它的LinearLayout的方向设置为垂直,但是看不到按钮。
编辑 - 已解决!
我发现将图形嵌套在自己的LinearLayout和另一个LinearLayout下的按钮下,并且这两个包裹在LinearLayout中解决了这个问题!必须对包含图形的LinearLayout进行加权(我选择了0.8的权重)。 布局文件如下所示:
<FrameLayout 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"
tools:context="com.nma.util.sdcardtrac.GraphFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/graph_fragment_wrap"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.8"
android:id="@+id/graph_fragment_layout"
android:orientation="vertical" />
<LinearLayout
android:id="@+id/graph_buttons"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_navigation_previous_item"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_navigation_next_item"/>
</LinearLayout>
</LinearLayout>
</FrameLayout>
答案 0 :(得分:0)
我刚试过它并且有效。也许您的图表占用了所有可用空间,因此屏幕下方添加了按钮?尝试将LinearLayout包装到ScrollView中,看看底部是否有一个按钮。