ImageView に何も表示されず、その理由がわかりません。使用しているファイルは、各描画可能フォルダーにあり、.tiff ファイルです。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState){
View v = inflater.inflate(R.layout.fragment_hello_moon, parent, false);
ImageView m = new ImageView(getActivity());
m.setImageResource(R.drawable.bell_dl_256);
TableLayout tl = (TableLayout)v.findViewById(R.id.l1);
TableRow tr = new TableRow(getActivity());
tr.addView(m);
tl.addView(tr);
return v;
}