私はすべてのミックスを試してきましたが、レイアウトや設定が異なっていましたが、この作業をどうやって行うのかわかりません。 MPAndroid Line Chartと同じスクリーン上にスピナーを置きたいのですが、高さを手動で修正して適切に調整することができますが、親またはマッチする親にはスピナーを考慮せず、 ! 290dpの高さで私の携帯電話にアプリケーションをロードすれば完璧にフィット!ないとてもきれい7" タブレット上でそれを読み込む...画面の半分が空である。どのように私はスピナーを占めレイアウトを埋めるためにチャートが含まれていますか?チャート上のコンテンツをラップは、それが使用できなくなります。固定の高さではなく画面サイズにMPAndroid調整
<?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="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".history"
android:background="#303030">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/chart"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/spinner4"
android:entries="@array/list3"
android:popupBackground="#303030"
android:layout_centerHorizontal="true" />
</LinearLayout>
android:layout_weight = ""これはすばらしいツールです!それは将来私を大いに役立つでしょう!ありがとうございました! – Abstract3000