私は を持っていて、それを使用
chart.xml
してバックグラウンド チャートを設定しています。ViewPager
android:background="@drawable/chart_bg"
問題は:
xml ビューにはレイアウト モードが表示されていますが、アプリケーションを起動/実行すると、実際のデバイスではchart_bg
背景チャートが表示されません。chart_bg
chart.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chartmain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:gravity="center_horizontal|center_vertical"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="1dp"
android:gravity="center_horizontal"
android:layout_gravity="center_horizontal" >
<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="fill_horizontal"
android:layout_weight="1"
android:gravity="center_horizontal"
android:text="Fri Jul 13, 2012"
/>
</LinearLayout>
<RelativeLayout
android:id="@+id/relative"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<android.support.v4.view.ViewPager
android:id="@+id/HView"
android:layout_width="360dp"
android:layout_height="150dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:background="@drawable/chart_bg">
</android.support.v4.view.ViewPager>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
Java ファイル:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
Bundle bundle = getArguments();
view = inflater.inflate(R.layout.chart, container, false);
return view;
}